{% extends "base.html" %} {% block body %}

{{ gettext('Admin Interface') }}


{% if users %}
{% for user in users %} {% if user.id == g.user.id %} {% else %} {% endif %} {% if user.last_access %} {% else %} {% endif %} {% endfor %}
{{ gettext('Username') }} {{ gettext('Edit') }} {{ gettext('Delete') }} {{ gettext('Created') }} {{ gettext('Last login') }}
{{ user.username }}
{% else %}

{{ gettext('No users to display') }}

{% endif %}
{{ gettext('INSTANCE CONFIG') }}
{% endblock %}