{% extends 'core/base_index_django.html' %} {% block headcontent %} User Settings {% load staticfiles %} {% endblock %} {% block pagecontent %}

Your Profile

Personal Information
{% csrf_token %} {% for message in messages %}
{{ message }}
{% endfor %} {% if form.errors %}

{% if form.errors.items|length == 1 %}Please correct the error below.{% else %}Please correct the errors below.{% endif %}

{% endif %} {% if not user.has_usable_password %}

Your first name, last name, email address, and password cannot be changed because you have been authenticated through an external single-sign on service.

{% endif %}
{% if user.expires %}
Other Information
{% endif %}
{% if user.has_usable_password %} Change Password {% endif %} {% if user.is_staff %} Go to Admin Site {% endif %}
{% endblock %}