16 lines
		
	
	
		
			758 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			758 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load i18n %}
 | 
						|
<section class="card is-hidden {{ class }}" id="{{ controls_text }}{% if controls_uid %}-{{ controls_uid }}{% endif %}">
 | 
						|
    <header class="card-header has-background-white-ter">
 | 
						|
        <h2 class="card-header-title" tabindex="0" id="{{ controls_text }}{% if controls_uid %}-{{ controls_uid }}{% endif %}-header">
 | 
						|
            {% block header %}{% endblock %}
 | 
						|
        </h2>
 | 
						|
        <span class="card-header-icon">
 | 
						|
            {% trans "Close" as button_text %}
 | 
						|
            {% include 'snippets/toggle/toggle_button.html' with label=button_text class="delete" nonbutton=True controls_text=controls_text %}
 | 
						|
        </span>
 | 
						|
    </header>
 | 
						|
    <section class="card-content content">
 | 
						|
        {% block form %}{% endblock %}
 | 
						|
    </section>
 | 
						|
</section>
 |