Files
django-maraudes/notes/templates/notes/sujet_create_inner.html

7 lines
367 B
HTML

{% load bootstrap4 %}
<form class="form-horizontal" action="{% url "notes:create-sujet" %}" method="post">{% csrf_token %}
{% bootstrap_form form layout="horizontal"%}
{% bootstrap_button "Ajouter un sujet" button_type="submit" button_class="btn btn-block btn-success" %}
{% if next %}<input type="text" hidden=True name="next" value="{{ next }}" />{%endif%}
</form>