statistic backend first version

This commit is contained in:
Sokurov Idar
2021-03-04 01:25:56 +03:00
parent 6cdd787cc8
commit fd1e048ebe
6 changed files with 178 additions and 10 deletions

View File

@@ -0,0 +1,26 @@
{% extends 'base/base.html' %}
{% load static %}
{% block title %}{{ pagename }}{% endblock %}
{% block heading %}Статистика{% endblock %}
{% block extra_css %}
<link rel="stylesheet" href="{% static 'main/css/work.css' %}">
{% endblock %}
{% block content %}
<div>
<form action="" method="post">
{% csrf_token %}
{% for field in form %}
{{field.label}}
{{field}}
<br>
{% endfor %}
<input type="submit">
</form>
</div>
{% endblock %}