{% extends 'mkt/base.html' %} {% from 'developers/includes/macros.html' import some_html_tip %} {% set title = _('Account Settings') %} {% block title %}{{ mkt_page_title(title) }}{% endblock %} {% block content %} {{ mkt_breadcrumbs(product, [(None, title)]) }}

{{ _('Basic Info') }}

{% include 'account/includes/nav.html' %}
{{ csrf() }}
{{ _('Choose Photo…') }} {{ form.photo.help_text }}
{{ _('No Photo') }} {% if amouser.picture_type %} {{ _('Delete current photo') }} {% endif %} {{ form.photo.errors }}
{{ _('BrowserID Email') }}
{{ _('BrowserID Password') }}
{{ grid_field(form.display_name, hint=True) }}
{{ settings.SITE_URL }}/user/{{ form.username }}
{{ form.username.errors }}
{{ grid_field(form.location) }} {{ grid_field(form.occupation) }} {{ grid_field(form.homepage) }} {{ grid_field(form.bio, some_html=True) }}
{{ _('Email me when') }}
{{ form.notifications }}

{{ _('Mozilla reserves the right to contact you individually ' 'about specific concerns with your apps.') }}

{% if 'admin_log' in form.fields %}

Administration

{{ grid_field(form.admin_log) }} {{ grid_field(form.notes) }} {{ grid_field(form.anonymize) }} {{ grid_field(form.restricted) }} {% endif %}
{% endblock %}