|
@@ -120,6 +120,14 @@ class MemberAdmin(UserAdmin):
|
|
|
"Légalement, il faut conserver sa fiche un an après la résiliation du service."
|
|
|
)
|
|
|
|
|
|
+ if (active_subscriptions.exists() and (
|
|
|
+ membership_end is None or membership_end <= date.today())):
|
|
|
+ note = ' <i class="fa fa-question-circle" style="color: red"></i>'
|
|
|
+ tooltip = (
|
|
|
+ "Cet·te adhérent·e bénéficie d'un service mais n'est pas à jour de cotisation."
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
out = '{}{}'.format(
|
|
|
obj.end_date_of_membership() or "pas de cotisation", note)
|
|
|
|