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

Name: {{ current_user.name }}

Email Address: {{ current_user.email }}

{% if current_user.annotation_mode %}

Annotation Controls are enabled.

{% else %}

Annotation Controls are disabled.

{% endif %} {% if current_user.contributor_name %}

Contributions attributed under: {{ current_user.contributor_name }}

{% else %}

Your contributions are not attributed to you. You can change that by editing your profile.

{% endif %}

Edit Profile

Change Password

Delete Account

{% endblock %}