forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-31 16:23:21 -06:00
parent df90d7749f
commit 8393e81d18
1 changed files with 18 additions and 15 deletions

View File

@ -30,19 +30,22 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<table class="table table-striped mb-5"> <div class="col-span-full my-4 px-2.5 md:px-0">
<thead class="bg-primary text-white"> <table class="table table-striped mb-5">
<tr> <thead class="bg-primary text-white">
<th>Statistic</th> <tr>
<th>Value</th> <th scope="col" class="p-2.5">Statistic</th>
</tr> <th scope="col" class="p-2.5">Value</th>
</thead> </tr>
{% for entry in data %} </thead>
<tr> <tbody>
<td>{{entry}}</td> {% for entry in data %}
<td>{{data[entry]}}</td> <tr>
</tr> <td class="px-2.5">{{entry}}</td>
{% endfor %} <td class="px-2.5 font-bold">{{data[entry]}}</td>
</table> </tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %} {% endblock %}