added imperfect today totals

This commit is contained in:
Mariano Ramon
2020-04-12 08:20:00 -03:00
parent 2f72244972
commit 5402b8854b
4 changed files with 93 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
<html>
<head>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>

View File

@@ -0,0 +1,16 @@
{% extends 'layout.html' %}
{% block content %}
<table>
{% for row in rows %}
<tr>
<td>{{ row["ws"] }}</td>
<td>{{ row["total"] }}</td>
</tr>
{% endfor %}
</table>
{% endblock content %}