{% extends "page.html" %} {% block content -%} {% if GetParametre("COTISATIONS_INTRO", dict_parametres) != '' %} {% endif %}

Liste des cotisations manquantes

{% if liste_cotisations_manquantes|length > 0 %}

Il reste {{ liste_cotisations_manquantes|length }} cotisation{% if liste_cotisations_manquantes|length > 1 %}s{% endif %} à mettre à jour :

{% for cotisation_manquante in liste_cotisations_manquantes %} {% endfor %}
{{ cotisation_manquante.nom }}
{% else %}

Aucune cotisation manquante

{% endif %}

Liste des dernières cotisations

{% if liste_cotisations|length == 0 %}
Aucune cotisation à afficher
{% else %}
{% for cotisation in liste_cotisations %} {% endfor %}
Du
Au
Intitulé
Bénéficiaire
{{ DateDDEnFr(cotisation.date_debut) }}
{{ DateDDEnFr(cotisation.date_fin) }}
{{ cotisation.GetNomComplet() }}
{{ cotisation.GetNumero() }}
{{ cotisation.GetBeneficiaire() }}
{% endif %}
{%- endblock content %}