|
@@ -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 %}
|