PamGram/resources/starrail/player_card/stats.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
334 B
HTML
Raw Permalink Normal View History

2023-05-22 13:30:36 +00:00
{% if character.property != none %}
2023-05-11 15:09:39 +00:00
<div class="rounded-lg bg-black bg-opacity-20">
2023-05-22 13:30:36 +00:00
{% for prop in character.property %}
<div
class="px-7 py-1.5 flex justify-between even:bg-white even:bg-opacity-10"
>
<div>{{ prop.name }}</div>
<div class="italic">{{ prop.total }}</div>
</div>
{% endfor %}
2023-05-11 15:09:39 +00:00
</div>
2023-05-22 13:30:36 +00:00
{% endif %}