|
@@ -1,6 +1,5 @@
|
|
|
{% 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">
|
|
@@ -22,8 +21,19 @@
|
|
|
Légalement, il faut conserver sa fiche un an après la résiliation
|
|
|
du service.
|
|
|
</li>
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ {% if object.loans.running.exists %}
|
|
|
+ <li class="warning">
|
|
|
+ Cet·te adhérent·e possède du matériel non rendu :
|
|
|
+ {% for i in object.loans.running %}
|
|
|
+ {{ i.item }}{% if not forloop.last %}, {% endif %}
|
|
|
+ {% endfor %}.
|
|
|
+ Vous devriez terminer ces emprunts et vous assurer
|
|
|
+ que le matériel a été rendu.
|
|
|
+ </li>
|
|
|
+ {% endif %}
|
|
|
</ul>
|
|
|
|
|
|
-{% endif %}
|
|
|
{{ block.super }}
|
|
|
{% endblock %}
|