2020-11-26 23:42:01 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2019-05-11 08:06:43 +00:00
|
|
|
<div>
|
|
|
|
{% if form.pre_form_info %}
|
2019-05-13 11:41:32 +00:00
|
|
|
<div class='alert alert-info alert-block' role='alert'>
|
2019-05-11 08:06:43 +00:00
|
|
|
{{ form.pre_form_info }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% if form.pre_form_warning %}
|
2019-05-18 03:24:15 +00:00
|
|
|
<div class='alert alert-warning alert-block' role='alert'>
|
2019-05-11 08:06:43 +00:00
|
|
|
{{ form.pre_form_warning }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2019-04-26 13:00:48 +00:00
|
|
|
|
2019-05-11 01:50:00 +00:00
|
|
|
{% block pre_form_content %}
|
|
|
|
{% endblock %}
|
2019-06-11 13:37:32 +00:00
|
|
|
|
|
|
|
{% block form %}
|
2018-05-03 13:38:32 +00:00
|
|
|
<form method="post" action='' class='js-modal-form' enctype="multipart/form-data">
|
2018-04-25 02:46:58 +00:00
|
|
|
{% csrf_token %}
|
2018-04-26 12:38:48 +00:00
|
|
|
{% load crispy_forms_tags %}
|
2021-05-06 12:33:03 +00:00
|
|
|
|
2019-09-30 03:28:51 +00:00
|
|
|
{% block form_data %}
|
|
|
|
{% endblock %}
|
2021-05-06 12:33:03 +00:00
|
|
|
|
2018-04-26 12:38:48 +00:00
|
|
|
{% crispy form %}
|
2019-05-07 12:46:37 +00:00
|
|
|
|
2019-05-01 14:04:39 +00:00
|
|
|
</form>
|
|
|
|
|
2019-06-11 13:37:32 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2019-05-01 14:04:39 +00:00
|
|
|
{% block post_form_content %}
|
2020-11-26 23:42:01 +00:00
|
|
|
{% endblock %}
|