Learning-Management-System/lms/templates/allauth/elements/panel.html
Ahmed Nagi e58c9c1f71 Update
2025-01-10 19:54:55 +02:00

19 lines
361 B
HTML

{% 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>