{% extends "public/content.html" %} {% load thumbnail %} {% block headtitle %}Update Details{% endblock %} {% block left_content %} {% include "members/partials/locker-tabs.html" with active_tab="account" %} {% endblock %} {% block title %}

My Account

{% endblock %} {% block headscript %} {% endblock %} {% block content %}

Update Details

{% csrf_token %} {% if errors %} {% for error in errors %} {{ error }} {% endfor %} {% endif %}

Account Details

{% include "public/partials/form.html" with form=update_user_form %}

Personal Details

{% include "public/partials/form.html" with form=update_personal_form %}

Contact Information - Work Address

{% include "public/partials/form.html" with form=update_hospital_form %} {% include "public/partials/form.html" with form=update_work_skip_form %}

Contact Information - Home Address

{% include "public/partials/form.html" with form=update_personal_address_form %} {% include "public/partials/form.html" with form=update_terms_form %} {% comment %}

Membership of Other Societies

Please indicate as appropriate {% include "public/partials/form.html" with form=update_other_societies_form checkboxes="true" %}

Areas of Interest

Please indicate as appropriate.

{% include "public/partials/form.html" with form=update_areas_form checkboxes="true" %} {% endcomment %}
{% endblock %}