{% 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 Pour PhœnixTM Administration
{{ cotisation.duration }} jour{{ cotisation.duration|pluralize }} {{ cotisation.amount }} € {{ cotisation.amount_ptm | default:0}} € {% if perms.preferences.change_cotisation %} Modifier {% endif %}{% if perms.preferences.delete_cotisation %} Supprimer{% endif %}
{% endblock %}