14 lines
335 B
HTML
14 lines
335 B
HTML
|
{% extends "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 %}
|