2021-07-01 13:36:07 +02:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
{{ form.media }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2021-07-09 07:46:20 +02:00
|
|
|
<div class="container">
|
2021-07-01 13:36:07 +02:00
|
|
|
<h4>
|
|
|
|
{{ form.form_title }}
|
|
|
|
</h4>
|
|
|
|
{% if form.form_caption is not None %}
|
2021-07-09 07:46:20 +02:00
|
|
|
<small>
|
2021-07-01 13:36:07 +02:00
|
|
|
{{ form.form_caption }}
|
2021-07-09 07:46:20 +02:00
|
|
|
</small>
|
2021-07-01 13:36:07 +02:00
|
|
|
{% endif %}
|
2021-07-26 15:16:16 +02:00
|
|
|
<form method="post" action="{{ form.action_url }}" {% for attr_key, attr_val in form.form_attrs.items %} {{attr_key}}="{{attr_val}}"{% endfor %}>
|
2021-07-01 13:36:07 +02:00
|
|
|
{% csrf_token %}
|
2021-10-06 16:15:40 +02:00
|
|
|
{% include 'form/table/generic_table_form_body.html' %}
|
2021-07-01 13:36:07 +02:00
|
|
|
<div class="row">
|
2021-09-21 14:32:10 +02:00
|
|
|
<div class="col-6">
|
2021-07-01 13:36:07 +02:00
|
|
|
<a href="{{ form.cancel_redirect }}">
|
2021-07-09 07:46:20 +02:00
|
|
|
<button class="btn btn-default" type="button" title="{% trans 'Cancel' %}">{% trans 'Cancel' %}</button>
|
2021-07-01 13:36:07 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2021-09-21 14:32:10 +02:00
|
|
|
<div class="col-6 d-flex justify-content-end">
|
2021-07-09 07:46:20 +02:00
|
|
|
<button class="btn btn-default" type="submit" title="{% trans 'Save' %}">{% trans 'Save' %}</button>
|
2021-07-01 13:36:07 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block footer %}
|
|
|
|
{{ form.media }}
|
|
|
|
{% endblock %}
|