You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
413 B
18 lines
413 B
{% extends 'partials/base.html' %}
|
|
{% block content %}
|
|
<h1>Добавление</h1>
|
|
<form method="post" action="">
|
|
|
|
{{ form.errors }}
|
|
{% csrf_token %}
|
|
|
|
{% for field in form %}
|
|
<div class="row">
|
|
{{ field.label }}
|
|
{{ field }}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<input type="submit" value="Создать" />
|
|
</form>
|
|
{% endblock %}s
|
|
|