12 lines
163 B
Django/Jinja
12 lines
163 B
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block body%}
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
{% endblock %}
|