{% extends "layout.html" %} {% from "macros/general.html" import display_csrf_token, display_subnav, display_input_cn, display_preferred_language, display_quota, display_input_employeeid, display_input_jobtitle, display_input_mobile, display_input_phone, display_account_status, display_mark_user_as_admin, display_reset_password, display_random_password, display_button_submit, with context %} {% from "macros/msgHandlers.html" import userMsgHandler with context %} {% block title %}{{ _('Edit account profile') }}{% 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,), (ctx.homepath + '/users/' + cur_domain, _('Users'),), ('active', ctx.homepath + '/profile/user/general/' + mail, _('Profile of user:') + ' ' + mail), ] %} {{ display_subnav(crumbs) }} {% endblock %} {% block main %} {% set input_csrf_token = display_csrf_token() %} {# Show system message #} {{ userMsgHandler(msg) }} {% set navlinks = [ ('general', _('General'), [true,]), ('password', _('Password'), [true,]), ] %}