{% extends 'base.html' %} {% block adhesiontab %} class="active"{% endblock %} {% block content %} {% if adhesion %}
Votre numéro d’adhérent : ADT{{ adhesion.id }}
{% if adhesion.contribution.count == 0 %}Pas de cotisation.
{% elif adhesion.contribution.count == 1 %} {% with contribution=adhesion.contribution.first %}Montant de votre cotisation : {{ contribution }}
{% if contribution.date %}Date d’adhésion : {{ contribution.date }}
{% endif %} {% endwith %} {% endif %}Montant | Période | Méthode de paiement | Premier paiement |
---|---|---|---|
{{ c.amount }} € | {{ c.period_verbose }} | {{ c.get_payment_method_display }} | {{ c.date }} |
Vous n’êtes pas adhérent.
{% endif %} {% endblock %}