Files
django-maraudes/sujets/templates/sujets/sujet_create_inner.html
2016-08-13 20:59:48 +02:00

9 lines
398 B
HTML

{% load bootstrap3 %}
<form class="form-horizontal" action="{% url "sujets:create" %}" method="post">{% csrf_token %}
{% bootstrap_form form layout="horizontal"%}
<div class="pull-right">
{% bootstrap_button "Ajouter un sujet" button_type="submit" button_class="btn btn-primary" icon="plus" %}
</div>
{% if next %}<input type="text" hidden=True name="next" value="{{ next }}" />{%endif%}
</form>