{% extends "user-settings.html" %} {% import '_form_macros.html' as macros %} {% block head %} {{ super() }} {{ macros.selectize_css() }} {% endblock %} {% block settings_content %}
user avatar {% set buttontext = _('Change Avatar')%} {%- if OPENID is defined %}
{%- else %} {{ buttontext }} {%- endif %}
{{ form.csrf_token }}
{{ macros.with_errors(form.firstname) }}
{{ macros.with_errors(form.lastname) }}
{{ macros.with_errors(form.locale, class="custom-select") }}
{{ macros.with_errors(form.timezone, class="custom-select") }}
{{ macros.with_errors(form.mail) }}
{{ macros.with_errors(form.ircnick) }}
{{ macros.with_errors(form.github) }}
{{ macros.with_errors(form.gitlab) }}
{{ macros.with_errors(form.rhbz_mail) }}
{% endblock %} {% block scripts %} {{ super () }} {{ macros.unsaved_changes() }} {{ macros.selectize() }} {% endblock %}