2021-03-01 01:37:49 +00:00
|
|
|
{% load i18n %}
|
2021-09-29 16:39:23 +00:00
|
|
|
<section class="card {% if not visible %}is-hidden {% endif %}{{ class }}" id="{{ controls_text }}{% if controls_uid %}-{{ controls_uid }}{% endif %}">
|
2022-02-20 00:34:17 +00:00
|
|
|
<header class="card-header has-background-secondary">
|
2021-08-09 01:40:47 +00:00
|
|
|
<h2 class="card-header-title" tabindex="0" id="{{ controls_text }}{% if controls_uid %}-{{ controls_uid }}{% endif %}_header">
|
2021-02-03 20:25:33 +00:00
|
|
|
{% block header %}{% endblock %}
|
|
|
|
</h2>
|
|
|
|
<span class="card-header-icon">
|
2021-03-01 01:10:30 +00:00
|
|
|
{% trans "Close" as button_text %}
|
|
|
|
{% include 'snippets/toggle/toggle_button.html' with label=button_text class="delete" nonbutton=True controls_text=controls_text %}
|
2021-02-03 20:25:33 +00:00
|
|
|
</span>
|
|
|
|
</header>
|
|
|
|
<section class="card-content content">
|
|
|
|
{% block form %}{% endblock %}
|
|
|
|
</section>
|
|
|
|
</section>
|