Files
LifeStats/templates/web/user_form.html
2018-12-27 04:30:12 +04:00

11 lines
211 B
HTML

{% extends 'web/base.html' %}
{% block main %}
<form method="post">{% csrf_token %}
{{ form.as_p }}
<input class="btn btn-primary" type="submit" value="Сохранить">
</form>
{% endblock %}