{% extends 'base.html' %} {% set page = 'edit_profile' %} {% block content %}
Edit Profile

Name: {{ current_user.name }}

{{ form.hidden_tag() }}
{{ form.email.label }}{{ form.email(size=30) }}

Enter a contributor name if you want your contributions attributed to you.

{{ form.annotation_mode.label }}{{ form.annotation_mode }} {{ form.contributor_name.label }}{{ form.contributor_name(size=30) }}
{% endblock %}