{% extends 'base.html' %} {% block title %}Contacts{% endblock %} {% block content %}
| Nom | Rôle | Scopes | Actif | {% if can_edit_contacts %}Actions | {% endif %}|
|---|---|---|---|---|---|
| {{ c.name }} | {{ c.email }} | {{ c.role }} | {{ (c.scopes_summary or '-')[:80] }} | {{ 'Oui' if c.is_active else 'Non' }} | {% if can_edit_contacts %}
|
{% endif %}