{% extends "_base.html" %} {% block content %}{{ super() }}

{{ _('Registered accounts') }}

{% for user in users %} {% endfor %}
{{ _('Email') }} {{ _('Last login') }} {{ _('Action') }}
{{ user.email }} {{ user.format_last_login(current_user.timezone_offset_minutes) }}
{% if not user.is_admin and user.is_active %} {{ _('Suspend') }} {% elif not user.is_admin %} {{ _('Activate') }} {% endif %} {{ _('Reset password') }}

{{ _('Email status') }}

{{ _('The next sync will upload %(num)d email(s).', num=pending_emails) }}

{{ _('Sync now') }} {% endblock %}