Added stats

This commit is contained in:
marc
2025-03-23 00:19:33 +01:00
parent 2f7c7c2429
commit c097811e40
10 changed files with 144 additions and 44 deletions

View File

@@ -4,6 +4,7 @@
<tr class="border-b border-beige">
<td class="font-bold py-2 px-4">Nom</td>
<td class="font-bold py-2 px-4">Enllaços</td>
<td class="font-bold py-2 px-4">Cops tocat</td>
</tr>
{% for tema in temes %}
<tr class="border-b border-beige">
@@ -15,6 +16,13 @@
<td class="py-2 px-4">
{% include "fragments/temes/result_links.html" %}
</td>
<td class="py-2 px-4">
{% if tema.stats is none %}
-
{% else %}
{{ tema.stats.times_played }}
{% endif %}
</td>
</tr>
{% endfor %}
</table>