{% extends 'base.html' %} {% block adhesiontab %} class="active"{% endblock %} {% block content %} {% if adhesion %}

À propos de votre adhésion

Votre numéro d’adhérent : ADT{{ adhesion.id }}

{% if adhesion.contribution %}

Montant de votre cotisation : {{ adhesion.contribution }}

{% else %}

Pas de cotisation.

{% endif %} {% if contribution.date %}

Date d’adhésion : {{ contribution.date }}

{% endif %}
{% if adhesion.contribution.count > 1 %}

Vos cotisations

{% for c in adhesion.contribution.all %} {% endfor %}
Montant Période Méthode de paiement Premier paiement
{{ c.amount }} € {{ c.period_verbose }} {{ c.get_payment_method_display }} {{ c.date }}
{% endif %} {% else %}

Vous n’êtes pas adhérent.

{% endif %} {% endblock %}