2021-02-28 20:37:49 -05:00
|
|
|
{% load i18n %}
|
2021-04-07 11:31:00 -04:00
|
|
|
<section class="card is-hidden {{ class }}" id="{{ controls_text }}{% if controls_uid %}-{{ controls_uid }}{% endif %}">
|
2021-02-03 15:25:33 -05:00
|
|
|
<header class="card-header has-background-white-ter">
|
2021-08-08 21:40:47 -04:00
|
|
|
<h2 class="card-header-title" tabindex="0" id="{{ controls_text }}{% if controls_uid %}-{{ controls_uid }}{% endif %}_header">
|
2021-02-03 15:25:33 -05:00
|
|
|
{% block header %}{% endblock %}
|
|
|
|
</h2>
|
|
|
|
<span class="card-header-icon">
|
2021-02-28 20:10:30 -05: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 15:25:33 -05:00
|
|
|
</span>
|
|
|
|
</header>
|
|
|
|
<section class="card-content content">
|
|
|
|
{% block form %}{% endblock %}
|
|
|
|
</section>
|
|
|
|
</section>
|