{% extends "layout.html" %} {% from "macros/general.html" import display_csrf_token, display_subnav, set_account_status_img, highlight_username_in_mail, show_pages, with context %} {% from "macros/msgHandlers.html" import userMsgHandler with context %} {% block title %}{{ _('Mail Users') }}{% endblock %} {% block navlinks_active_domains %}class="active"{% endblock %} {% block breadcrumb %} {% set crumbs = [ (ctx.homepath + '/domains', _('All domains')), (ctx.homepath + '/profile/domain/general/' + cur_domain, cur_domain), ('active', ctx.homepath + '/users/' + cur_domain, _('Users')), ] %} {{ display_subnav(crumbs) }} {% endblock %} {% block main %} {# Show system message #} {{ userMsgHandler(msg) }} {% if users is defined %} {# List all users. #}
{% endif %} {% endblock main %} {% block js %} {{ load_jquery(['tablesorter'], nonSortedCols=[0]) }} {% endblock js %}