ai_admin/templates/allauth/elements/panel.html

15 lines
293 B
HTML
Raw Normal View History

2024-09-20 12:29:09 +08:00
{% 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>