14 lines
373 B
HTML
14 lines
373 B
HTML
{% extends request.content_only|yesno:"empty.html,base.html" %}
|
|
|
|
{% load crispy_forms_filters i18n %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<div id="form-content">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
</div>
|
|
<button class="btn btn-success" type="submit">{% trans "Create" %}</button>
|
|
</form>
|
|
{% endblock content %}
|