16 lines
202 B
HTML
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 %} |