ai_admin/templates/allauth/elements/panel.html
2024-09-20 04:29:09 +00:00

15 lines
293 B
HTML
Executable File

{% load allauth %}
<section>
<h2>
{% slot title %}
{% endslot %}
</h2>
{% slot body %}
{% endslot %}
{% if slots.actions %}
<ul>
{% for action in slots.actions %}<li>{{ action }}</li>{% endfor %}
</ul>
{% endif %}
</section>