mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
13 lines
334 B
HTML
13 lines
334 B
HTML
{% if character.property != none %}
|
|
<div class="rounded-lg bg-black bg-opacity-20">
|
|
{% 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 %}
|
|
</div>
|
|
{% endif %}
|