diff --git a/src/character/templates/character/view.html b/src/character/templates/character/view.html index bee8919..f56f909 100644 --- a/src/character/templates/character/view.html +++ b/src/character/templates/character/view.html @@ -16,7 +16,7 @@ {{ character.get_gender_display }}, {{ character.age }} ans, {{ character.height_m }}m, {{ character.weight }}kg (IMC: {{ character.imc }})

-
+
@@ -59,7 +59,7 @@
-
+
@@ -108,7 +108,7 @@
Combat
-
+
@@ -116,7 +116,7 @@ + + + + + + + + + +
Énergie
- PV + Points de vie
- PM + Points de mana
+ Points de récup. +
+ + + + +
+
+ {{ character.recovery_points_remaining }} / {{ character.recovery_points_max }}
+ Points de chance +
+ + + + +
+
+ {{ character.luck_points_remaining }} / {{ character.luck_points_max }} +
+
+
+
+
+
+
{{ character.racial_capability.name }}
+
+

{{ character.racial_capability.description|capfirst }}

+
+
+
+
+ + + + + + + + + + + {% for weapon in character.weapons.all %} - - - - - - - -
ArmeAttaqueDMSpécial
- PR -
- - - - -
-
- {{ character.recovery_points_remaining }} / {{ character.recovery_points_max }}
- PC -
- - - - -
-
- {{ character.luck_points_remaining }} / {{ character.luck_points_max }} -
+ {{ weapon.name }} + 1D20 + + {{ weapon.damage }} + {{ weapon.special }} + + {% empty %} + + Aucune arme + + {% endfor %} + + +
+
+
+
+
+
Équipement
+
+ {% include "character/equipment_display.html" %} +
+
-
-
-
-
{{ character.racial_capability.name }}
-
-

{{ character.racial_capability.description|capfirst }}

-
-
-
-
- - - - - - - - - - - {% for weapon in character.weapons.all %} - - - - - - - {% empty %} - - - - {% endfor %} - -
ArmeAttaqueDMSpécial
{{ weapon.name }}1D20 +{{ weapon.damage }}{{ weapon.special }}
Aucune arme
+
+
+

Voies & Capacités

+
+ {% for path, capabilities in character.get_capabilities_by_path.items %} +
+
+
{{ path.display_name }}
+ {% if path.notes %} +
{{ path.notes }}
+ {% endif %} +
    + {% for capability in capabilities %} +
  • + + {{ capability.rank }}. + {{ capability.name }} + {% if capability.spell %}{% endif %} + {% if capability.limited %}{% endif %} +
    + {{ capability.description }} +
  • + {% endfor %} +
-
-
-
-
Équipement
-
- {% include "character/equipment_display.html" %} -
- -
-
-
-

Voies & Capacités

-
- {% for path, capabilities in character.get_capabilities_by_path.items %} -
-
-
{{ path.display_name }}
- {% if path.notes %} -
{{ path.notes }}
- {% endif %} -
    - {% for capability in capabilities %} -
  • - - {{ capability.rank }}. - {{ capability.name }} - {% if capability.spell %}{% endif %} - {% if capability.limited %}{% endif %} -
    - {{ capability.description }} -
  • - {% endfor %} -
-
-
- {% endfor %} -
-

Notes

-
- {% include "character/notes_display.html" %} -
+ {% endfor %} +
+

Notes

+
+ {% include "character/notes_display.html" %} +
{% endblock %}