Updated version with days iteration

This commit is contained in:
Sokurov Idar
2021-03-04 23:13:10 +03:00
parent fd1e048ebe
commit 8566e2b5b6
3 changed files with 84 additions and 30 deletions

View File

@@ -12,15 +12,19 @@
{% block content %}
<div>
<form action="" method="post">
{% csrf_token %}
{% for field in form %}
{{field.label}}
{{field}}
<br>
<form action="" method="post">
{% csrf_token %}
{% for field in form %}
{{field.label}}
{{field}}
<br>
{% endfor %}
<input type="submit">
</form>
{% for key,val in stats_logs.items %}
<h3>{{key}} {{val}}</h3>
<br>
{% endfor %}
<input type="submit">
</form>
</div>
{% endblock %}