{% extends 'prefs.html' %} {% from 'include/panel.html' import panel %} {% set active_panelid='general' %} {% block panel %} {% include 'message.html' %} {# Panel to set user info. #} {% call panel(title=_("Account settings"), description=_("General information about your account.")) %}
{{ profile_form }}
{% endcall %} {# Panel to change password. #} {% call panel(title=_("Password"), description=_("Change your current password")) %}
{{ password_form }}
{% endcall %} {# Panel to refresh repository list. #} {% call panel(title=_("Refresh")) %}
{{ refresh_form }}
{% endcall %} {% endblock %}