diff --git a/templates/base.html b/templates/base.html
index 83bea233..f536c9ff 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -146,7 +146,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
Connexion |
{% if request_user.has_access %}
- Active (jusqu'au {{ request.user.end_access }})
+ jusqu'au {{ request.user.end_access|date:"d b Y" }}
{% else %}
Désactivée
{% endif %}
@@ -156,7 +156,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
| Adhésion |
{% if request_user.end_adhesion != None %}
- {{ request_user.end_adhesion }}
+ jusqu'au {{ request_user.end_adhesion|date:"d b Y" }}
{% else %}
Non adhérent
{% endif %}
|