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

My Membership

{% endblock %} {% block footer_script %} {% endblock %} {% block content %}

Renew Membership

{% if member_expired %}

Your membership expired on {{ current_member.expiry_date }}.

{% else %}

Your membership is due to expire on {{ current_member.expiry_date }}.

{% endif %} {% if member.direct_debit_confirmed %}

Your membership is set to renew by direct debit, if you wish to change this, please go to...

{% else %} {% if content %} {{ content.content|safe }} {% endif %}
{% csrf_token %} {% if errors %} {% for error in errors %} {{ error }} {% endfor %} {% endif %}

Personal Details

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

Home Address

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

Institution Address

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

Areas of Interest

Please indicate as appropriate.

{% include "public/partials/form.html" with form=update_areas_form checkboxes="true" %}
Back to Your Account
{% endif %} {% endblock %}