Files
deskmeter/dmold/dmweb/templates/pages.html
2025-12-29 14:12:46 -03:00

16 lines
202 B
HTML

{% extends 'layout.html' %}
{% block content %}
<table>
{% for row in rows %}
<tr>
<td>{{ row["ws"] }}</td>
<td>{{ row["total"] }}</td>
</tr>
{% endfor %}
</table>
{% endblock content %}