12 lines
281 B
HTML
12 lines
281 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% load i18n crispy_forms_filters %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form|crispy }}
|
||
|
<input type="submit" class="btn btn-primary btn-block" value="{% trans "Submit" %}">
|
||
|
</form>
|
||
|
{% endblock %}
|