Add some additional hooks to characters.html.twig

This commit is contained in:
slawkens
2020-06-01 22:41:32 +02:00
parent 2c09b0ae86
commit 9b66edc148
2 changed files with 46 additions and 34 deletions

View File

@@ -156,6 +156,8 @@
<br/>
<table border="0" width="100%">
<tr>
{{ hook(constant('HOOK_CHARACTERS_BEFORE_SKILLS')) }}
{% if config.characters.skills %}
<!-- SKILLS -->
<td width="30%" valign="top">
@@ -176,6 +178,8 @@
<!-- SKILLS_END -->
{% endif %}
{{ hook(constant('HOOK_CHARACTERS_AFTER_SKILLS')) }}
{% if quests_enabled %}
<!-- QUESTS -->
<td width="40%" valign="top">
@@ -196,6 +200,8 @@
<!-- QUESTS_END -->
{% endif %}
{{ hook(constant('HOOK_CHARACTERS_AFTER_QUESTS')) }}
{% if config.characters.equipment %}
<!-- EQUIPMENT -->
<td width="100" valign="top">
@@ -231,6 +237,7 @@
</td>
<!-- EQUIPMENT_END -->
{% endif %}
{{ hook(constant('HOOK_CHARACTERS_AFTER_EQUIPMENT')) }}
</tr>
</table>