{% extends "dashboard/base.html" %} {% block dashboard %}
{% if form.errors %} {% for error, code in form.errors.items %}
{{ code }}
{% endfor %} {% endif %}

Update Your Profile

{% include "account/forms/profile.html" %}

{% if user.has_usable_password %}

Change the current Password

{% include "account/forms/change_password.html" %}
{% else %}

Set a new Password

{% include "account/forms/set_password.html" %}
{% endif %}

Update Your Emails

This section is not yet developed. Basically, we require an email server.

Deactivate Your account

At this moment, account deletion/deactivation is not allowed.
{% endblock %}