{% extends "base.html" %} {% block entete %}Gestion des cotisations{% endblock %} {% block navbar %} {% endblock %} {% block content %}

Liste des cotisations

{% if perms.preferences.add_cotisation %} Créer une cotisation

{% endif %}
{% for cotisation in cotisations %} {% endfor %}
Durée de cotisation Prix Administration
{{ cotisation.duration }} jours {{ cotisation.amount }} € {% if perms.preferences.change_cotisation %}Modifier {% endif %}{% if perms.preferences.delete_cotisation %}Supprimer{% endif %}
{% endblock %}