{% 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_timezones, 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 %} {% set cn = admin_profile.get('cn', [''])[0] %} {% set first_name = admin_profile.get('givenName', [''])[0] |e %} {% set last_name = admin_profile.get('sn', [''])[0] |e %} {% set accountStatus = admin_profile.get('accountStatus', ['disabled'])[0] %} {% set disabled_services = admin_profile.get('disabledService', []) %} {% 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 %}
{{ input_csrf_token() }}
{% if session.get('is_global_admin') %} {{ display_account_status(accountStatus) }} {% endif %} {{ display_input_cn(value=cn, tooltip=_('Full name'), show_first_last_name=true, first_name=first_name, last_name=last_name) }} {{ display_preferred_language(value=admin_profile.get('preferredLanguage', ['en_US'])[0], languagemaps=languagemaps) }} {{ display_timezones(value=account_settings.get('timezone'), timezones=timezones) }} {% if session.get('is_global_admin') %}
{{ display_input_global_admin(value=admin_profile.get('domainGlobalAdmin', ['no'])[0]) }} {% endif %}
{# .columns #} {{ input_submit() }}
{{ input_csrf_token() }}
{% if session.get('is_global_admin') %} {{ 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) }} {% else %} {{ display_reset_password( min_passwd_length=min_passwd_length, max_passwd_length=max_passwd_length, show_oldpw=true, show_confirmpw=true, store_password_in_plain_text=store_password_in_plain_text) }} {% endif %}
{{ 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 %}