Browse Source

Warn when trying to delete a member we should keep

A member we should keep is either :

- a member with active subscription
- a member with contract ended less than one year ago

Ref #137 Ref #30
Jocelyn Delalande 6 years ago
parent
commit
ddb4261925
1 changed files with 29 additions and 0 deletions
  1. 29 0
      coin/members/templates/admin/members/member/delete_confirmation.html

+ 29 - 0
coin/members/templates/admin/members/member/delete_confirmation.html

@@ -0,0 +1,29 @@
+{% extends "admin/delete_confirmation.html" %}
+{% block content %}
+{% if object.get_recent_inactive_subscriptions.exists %}
+<ul class="messagelist">
+    {% if object.get_active_subscriptions.exists %}
+    <li class="warning">
+        Cet·te adhérent·e possède un abonnement à un service en
+        cours
+
+        ({% for i in object.get_active_subscriptions %}{{ i.offer.name }}{% if not forloop.last %}, {% endif %}{% endfor %}).
+
+        Légalement, il faut conserver sa fiche un an après la résiliation du service.
+    </li>
+    {% endif %}
+
+    {% if object.get_recent_inactive_subscriptions.exists %}
+    <li class="warning">
+        Cet·te adhérent·e possède un service résilié depuis moins d'un
+        an
+        ({% for i in object.get_recent_inactive_subscriptions %}{{ i.offer.name }}{% if not forloop.last %}, {% endif %}{% endfor %}).
+
+        Légalement, il faut conserver sa fiche un an après la résiliation
+        du service.
+    </li>
+</ul>
+
+{% endif %}
+{{ block.super }}
+{% endblock %}