init proj

This commit is contained in:
2019-01-08 21:45:36 +05:00
commit dfc440faa4
27 changed files with 1252 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{% extends 'base.html' %}
{% block content %}
<div class="container">
<form>
<div class="form-group">
<label for="year">Год</label>
<input class="form-control" required type="number" id="year" name="year">
</div>
<button class="btn btn-primary" type="submit">Отправить</button>
</form>
{% if res %}
<div>Результат: {{ res }}</div>
{% endif %}
</div>
{% endblock %}