{% extends "base.html" %} {% block title %}{{ _("Edit user profile: %s") % user.realname }}{% end block %} {% block body %}
{% raw xsrf_form_html() %}
{{ _("User Identity") }}
{{ user.name }} {{ _("Cannot be changed.") }}
{{ _("This field is optional, but we appreciate it very much if you type in your real name.") }}
{{ _("If the email address is changed, your account will be disabled until you confirm the new email address.") }}
{% if current_user.is_admin() %}
{{ _("Admin actions") }}
{{ _("Define the permissions of the user.") }}
{% end %}
{{ _("Account security settings") }}
{{ _("The password is used to secure the login and must be at least 8 characters.") }}
{{ _("Leave the password fields empty to keep the current password.") }}
{{ _("Locale & timezone settings") }}
{% module SelectLocale(name="locale", id="inputLocale", preselect=user.locale) %} {{ _("Auto-detect will use the language transmitted by your browser.") }}
{% module SelectTimezone(name="timezone", id="inputTimezone", preselect=user.timezone.zone) %} {{ _("Auto-detect will use the timezone transmitted by your browser.") }}
{{ _("Cancel") }}
{% end block %}