{% extends "page.html" %} {%- block styles %} {{ super() }} {%- endblock styles %} {% block content -%} {% if GetParametre("ACCUEIL_MESSAGES_AFFICHER", dict_parametres) == 'True' and liste_messages|length > 0 %}

Messages

    {% for message in liste_messages %}
  • {{ message.texte }} {% if message.Is_nouveau() == True %}Nouveau{% endif %}
  • {% endfor %}
{% endif %} {% if GetParametre("ACCUEIL_ETAT_DOSSIER_AFFICHER", dict_parametres) == 'True' %}

Etat de votre dossier

    {% if liste_pieces_manquantes|length > 0 %}
  • {{ liste_pieces_manquantes|length }} pièce{% if liste_pieces_manquantes|length > 1 %}s{% endif %} manquante{% if liste_pieces_manquantes|length > 1 %}s{% endif %} :
  • {% endif %} {% if liste_cotisations_manquantes|length > 0 %}
  • {{ liste_cotisations_manquantes|length }} cotisation{% if liste_cotisations_manquantes|length > 1 %}s{% endif %} manquante{% if liste_cotisations_manquantes|length > 1 %}s{% endif %} :
  • {% endif %}
{% if liste_pieces_manquantes|length == 0 and liste_cotisations_manquantes|length == 0 %}

Aucune pièce manquante

{% endif %}
{% endif %}
{% for dict_menu in g.liste_pages_familles[2:] %} {%if dict_menu["type"] == "page" and dict_menu["raccourci"] == True and GetParametre(dict_menu["affichage"], dict_parametres) == 'True' %} {% set page = dict_menu["page"] %}

{{ g.dict_pages[page]['nom'] }}

{% endif %} {% endfor %}
{%- endblock content %}