Browse Source

Warn when trying to delete a member we should keep

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

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

@@ -0,0 +1,14 @@
+{% extends "admin/delete_confirmation.html" %}
+{% block content %}
+{% if object.get_recent_inactive_subscriptions.exists %}
+<ul class="messagelist">
+    <li class="warning">
+        Cet·te adhérent·e possède un service en cours ou résilié depuis moins
+        d'un an. Légalement, il faut conserver sa fiche un an après la
+        résiliation du service.
+    </li>
+</ul>
+
+{% endif %}
+{{ block.super }}
+{% endblock %}