{% extends "layout.html" %} {% from "macros/form_inputs.html" import input_submit, input_csrf_token with context %} {% from "macros/general.html" import display_subnav, set_account_status_img, display_account_status, display_input_cn, display_preferred_language, display_reset_password, display_random_password, display_input_global_admin, with context %} {% from "macros/msg_handlers.html" import admin_msg_handler with context %} {% block title %}{{ _('Edit account profile') }}{% endblock %} {% block navlinks_admins %}class="active"{% endblock %} {% block breadcrumb %} {% if session.get('is_global_admin') %} {% set crumbs = [(ctx.homepath + '/admins', _('All admins')), ('active', ctx.homepath + '/profile/admin/general/' + mail, _('Profile of admin:') + ' ' + mail)] %} {% else %} {% set crumbs = [('active', ctx.homepath + '/profile/admin/general/' + mail, _('Profile of admin:') + ' ' + mail)] %} {% endif %} {{ display_subnav(crumbs) }} {% endblock %} {% block main %} {# Show system message #} {% if msg %} {% if msg.startswith('PW_') %} {% set _pw_errors = msg.split(',') %} {% for _err in _pw_errors %} {{ admin_msg_handler(_err) }} {% endfor %} {% else %} {{ admin_msg_handler(msg) }} {% endif %} {% endif %} {% set navlinks = [ ('general', _('General'), []), ('password', _('Password'), []), ] %}
    {% for nav in navlinks %} {% if not false in nav[2] and not none in nav[2] %}
  • {{ nav[1] }}
  • {% endif %} {% endfor %}

{{ _('Profile of admin:') }} {{ mail }}

{{ input_csrf_token() }}
{% if session.get('is_global_admin') %} {{ display_account_status(profile.active) }} {% endif %} {{ display_input_cn(value=profile.name, account_type='admin') }} {{ display_preferred_language(value=profile.get('language', 'en_US') |e, languagemaps=languagemaps) }}
{# .columns #} {{ input_submit() }}
{{ input_csrf_token() }}
{{ display_reset_password( min_passwd_length=min_passwd_length, max_passwd_length=max_passwd_length, show_confirmpw=true, store_password_in_plain_text=store_password_in_plain_text) }}
{{ display_random_password(password_length=min_passwd_length, password_policies=password_policies) }}
{{ input_submit() }}
{# .box-wrap #}
{# .box-body #}
{#-- .content-box --#} {% endblock main %} {% block extra_js %} {% endblock extra_js %}