{% extends "base.html" %} {% load i18n %} {% load humanize %} {% block title %}{% trans "Sessions" %}{% endblock %} {% block content %}

{% trans "Sessions" %}

{% trans "The following sessions are currently active on your account." %}

{% csrf_token %} {% if show_last_seen_at %} {% endif %} {% for session in sessions %} {% if show_last_seen_at %} {% endif %} {% endfor %}
{% trans "Started At" %} {% trans "IP Address" %} {% trans "Browser" %}{% trans "Last Seen" %}
{{ session.created_at|naturaltime }} {{ session.ip }} {{ session.user_agent }}{{ session.last_seen_at|naturaltime }} {% if session.is_current %} {% trans "Current" %} {% endif %}
{% if session_count > 1 %} {% endif %}
{% endblock %}