Files
Diarios-Oficiais-ALEMS/diários_oficiais_alems/templates/allauth/elements/panel.html

20 lines
361 B
HTML
Raw Normal View History

2025-03-06 12:10:17 -03:00
{% load allauth %}
<section>
<div class="card mb-4">
<div class="card-body">
<h2 class="card-title">
{% slot title %}
{% endslot %}
</h2>
{% slot body %}
{% endslot %}
{% if slots.actions %}
<ul>
{% for action in slots.actions %}<li>{{ action }}</li>{% endfor %}
</ul>
{% endif %}
</div>
</div>
</section>