Browse Source

Add a warning in members list for members with unpaid fee but services

Ref #137
Jocelyn Delalande 6 years ago
parent
commit
377a4d74a9
1 changed files with 8 additions and 0 deletions
  1. 8 0
      coin/members/admin.py

+ 8 - 0
coin/members/admin.py

@@ -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)