Files
yaric359/templates/pages/queries/max_heads.html
2019-01-08 16:09:15 +05:00

20 lines
741 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="container">
<h3>Добавить телефон</h3>
<form method="get">
<div class="form-group">
<label for="date_start">Начало</label>
<input class="form-control" id="date_start" name="date_start" required type="date">
</div>
<div class="form-group">
<label for="date_end">Конец</label>
<input class="form-control" id="date_end" name="date_end" required type="date">
</div>
<button type="submit" class="btn btn-primary">Отправить</button>
</form>
{% if res %}
<div>Подразделение {{ res }}</div>
{% endif %}
</div>
{% endblock %}