mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 20:10:36 +00:00
11 lines
288 B
HTML
11 lines
288 B
HTML
|
<div class="rounded-lg overflow-hidden bg-black bg-opacity-20">
|
||
|
{% for (name, value) in stats %}
|
||
|
<div
|
||
|
class="flex justify-between px-10 py-1.5 even:bg-black even:bg-opacity-30"
|
||
|
>
|
||
|
<div>{{ name }}</div>
|
||
|
<div class="italic">{{ value }}</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|