{% extends "xeolux_securitykit/base.html" %} {% block title %}Profils de sécurité{% endblock %} {% block content %} {% if active_profile %}
Profil actif : {{ active_profile.name }}
{% endif %}
{% for profile in profiles %}
{{ profile.label }} {% if active_profile and active_profile.name == profile.name %} Actif {% endif %}

{{ profile.description }}

{% csrf_token %}
{% empty %}
Aucun profil disponible.
{% endfor %}
À savoir
{% endblock %}