{% extends "layouts/main.html" %} {% block main %}

Ajouter
{% if Sections %}
{% for Section in Sections %} {% endfor %}
Nom Section parente Membres Contacts
{{ Section.Name }} {% if Section.ParentSectionID %} {{ Section.ParentSection.Name }} {% else %} Non {% endif %} {% if Section.ContainsMembers %} Oui {% else %} Non {% endif %} {% if Section.ContainsContacts %} Oui {% else %} Non {% endif %}
{% else %}
Pas de section pour le moment
{% endif %}
{% endblock %}