{% extends "main_aside.html" %} {% load assets %} {% load i18n %} {% load basename %} {% load assets %} {% block title %}{% trans "Update personal information" %}{% endblock %} {% block main_content %}
{% csrf_token %} {# COMMON #}

{% trans "Personal information" %}

{% with form=form %} {% include "form_snippet.html" %} {% endwith %}
{# ACTION CONTROLS #}
{% if not object.has_usable_password and object.business_email %} {% endif %} {% if request.path == '/contacts/personal/' %} {% trans "Cancel" %} {% elif perms.contacts.add_user %} {% trans "Back to contact list" %} {% else %} {% trans "Cancel" %} {% endif %}
{% if object and perms.contacts.delete_user %}

{% url "contact_delete" object.id as delete_url %} {% blocktrans %}You can also delete this contact.{% endblocktrans %}

{% endif %} {% endblock %} {% block sidebar %} {% if not object.has_usable_password and object.business_email %}

{% trans "Account not claimed" %}
{% trans "This will also save any changes to your contact form" %}

{% endif %} {% if object %} {% if object.is_student %}

{% trans "Also edit" %}

{% endif %} {% if object.id == request.user.id %}

{% trans "Change password" %}

{% endif %} {% endif %} {# endif object #} {% endblock %} {% block page_bottom %} {% assets "widget_js_all" %} {% endassets %} {% endblock %}