{% extends "base.html" %} {% block content %}

Profile Information

Change your basic account information

{% csrf_token %} {{ profile_settings.errors }} {{ profile_settings.non_field_errors }}
{{ profile_settings.first_name.label_tag }} {{ profile_settings.first_name.errors|striptags }}
{{ profile_settings.last_name.label_tag }} {{ profile_settings.last_name.errors|striptags }}
{{ profile_settings.email.label_tag }} {{ profile_settings.email.errors|striptags }}
{{ profile_settings.timezone.label_tag }} {{ profile_settings.timezone }}
{{ profile_settings.old_password.label_tag }} {{ profile_settings.old_password }} {{ profile_settings.old_password.non_field_errors|striptags }}
{{ profile_settings.new_password.label_tag }} {{ profile_settings.new_password }} {{ profile_settings.new_password.errors|striptags }}
{{ profile_settings.new_password_verify.label_tag }} {{ profile_settings.new_password_verify }} {{ profile_settings.new_password_verify.errors|striptags }}
{% endblock %} {# vim:se fileencoding=utf8 et ts=4 sts=4 sw=4 ft=htmldjango : #}