2021-04-01 20:14:23 +00:00
|
|
|
{% load i18n %}
|
2021-12-31 03:19:55 +00:00
|
|
|
|
|
|
|
<div class="modal {% if active %}is-active{% endif %}" id="{{ id }}">
|
|
|
|
<div class="modal-background" data-modal-close></div>
|
2021-12-31 18:39:18 +00:00
|
|
|
<div class="modal-card" role="dialog" aria-modal="true" tabindex="-1" aria-described-by="{{ id }}_header">
|
2021-12-31 03:19:55 +00:00
|
|
|
<header class="modal-card-head">
|
2021-12-31 18:39:18 +00:00
|
|
|
<h2 class="modal-card-title mb-0" id="{{ id }}_header">
|
2021-01-17 18:10:59 +00:00
|
|
|
{% block modal-title %}{% endblock %}
|
|
|
|
</h2>
|
2021-12-31 03:19:55 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="delete"
|
|
|
|
aria-label="{% trans 'Close' %}"
|
|
|
|
data-modal-close
|
|
|
|
></button>
|
2021-01-17 18:10:59 +00:00
|
|
|
</header>
|
2021-12-31 03:19:55 +00:00
|
|
|
|
2021-01-17 18:10:59 +00:00
|
|
|
{% block modal-form-open %}{% endblock %}
|
2021-01-20 06:30:51 +00:00
|
|
|
<section class="modal-card-body">
|
|
|
|
{% block modal-body %}{% endblock %}
|
|
|
|
</section>
|
2021-01-17 18:10:59 +00:00
|
|
|
<footer class="modal-card-foot">
|
|
|
|
{% block modal-footer %}{% endblock %}
|
|
|
|
</footer>
|
|
|
|
{% block modal-form-close %}{% endblock %}
|
|
|
|
</div>
|
2021-12-31 03:19:55 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="modal-close is-large"
|
|
|
|
aria-label="{% trans 'Close' %}"
|
|
|
|
data-modal-close
|
|
|
|
></button>
|
2021-01-17 18:10:59 +00:00
|
|
|
</div>
|