{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load urlreplace %} {% block title %}{% trans "Admin sessions" %}{% endblock %} {% block content %}
# | {% trans "User" %} | {% trans "Start date" %} | {% trans "End date" %} | {% trans "Comment" %} | |
---|---|---|---|---|---|
{{ s.pk }} | {{ s.user.email }} | {{ s.date_start|date:"SHORT_DATETIME_FORMAT" }} | {% if s.date_end %} {{ s.date_end|date:"SHORT_DATETIME_FORMAT" }} {% endif %} | {% if s.comment %} {% else %} {% endif %} |