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

My Membership

{% endblock %} {% block content %}

My Membership

Your membership number: {{ current_member.membership_number }}

{% if member_expired %}

Your membership expired on {{ current_member.expiry_date }}

{% elif current_member.expiry_date %}

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

{% else %}

Your membership is not currently set to expire.

{% endif %} {% if direct_debit %}

You have a Direct Debit associated with your account. Direct Debits will be collected on, or soon after, the 29th January, and your membership will be renewed then.

Moneys due to be taken are £{{ direct_debit.get_cost|floatformat:2 }}

Update Direct Debit Details

{% endif %} {% if member_expiring %}

Renew your membership now.

{% endif %} {% if current_member.get_subscriptions %}

Previous Membership Fees

{% for subscription in current_member.get_subscriptions %} {% endfor %}
Type Date From Date To Price Paid
{{ subscription.member_type }} {{ subscription.start_date }} {{ subscription.expiry_date }} {% if subscription.total %}£{{ subscription.total|floatformat:2 }}{% else %}0{% endif %}
{% endif %}
{% endblock %}