+
+
+
+
+
+
+
+ {% if notice != '' %}
+ {{ notice }}
+ {% endif %}
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {% trans 'Mes sessions' %}
+ |
+
+
+
+
+
+ |
+
+ {% trans 'Date de connexion' %}
+ |
+
+ {% trans 'Dernier access' %}
+ |
+
+ {% trans 'IP' %}
+ |
+
+ {% trans 'Browser' %}
+ |
+
+ {% trans 'ecran' %}
+ |
+
+ {% trans 'Session persistante' %}
+ |
+
+ {% for row in session.get_my_sessions() %}
+
+
+ {% if session.get_ses_id() != row['session_id'] %}
+
+ {% endif %}
+ |
+
+ {{ row['created_on'] |getDate }}
+ |
+
+ {{ row['lastaccess'] |getDate }}
+ |
+
+ {{ row['ip'] }}
+ {{ row['ip_infos'] }}
+ |
+
+ {{ row['browser'] }} {{ row['browser_version'] }}
+ |
+
+ {{ row['screen'] }}
+ |
+
+ {% if row['token'] %}oui{% endif %}
+ |
+
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+
+