{% if member_direct_debits %}
Direct Debit
| Account Name |
Account Number |
Sort Code |
Status |
|
{% for direct_debit in member_direct_debits %}
| {{ direct_debit.ac_name }} |
{{ direct_debit.ac_no }} |
{{ direct_debit.sort_code }} |
{{ direct_debit.get_status_display }} |
|
{% endfor %}
{% endif %}
{% if payments %}
Payments
| Type |
Created |
Status |
Price |
|
{% for payment in payments %}
| {% if payment.type = 'meeting-booking' %}{% if payment.meeting_booking %}{{ payment.meeting_booking.meeting }} Booking{% else %}Meeting Booking (Deleted){% endif %}{% else %}{% if payment.type = 'arrears' %}{{ payment.arrears.name }}{% else %}{{ payment.get_type_display }} {% endif %}{% endif %} |
{{ payment.created }} |
{{ payment.get_status_display }} |
{% if payment.amount %}£{{ payment.amount }}{% endif %} |
|
{% endfor %}
{% endif %}
Member Subscriptions
{% if member_subscriptions %}
| Subscription |
Start Date |
End Date |
Total |
|
{% for subscription in member_subscriptions %}
| {{ subscription.subscription }} |
{{ subscription.start_date }} |
{{ subscription.expiry_date }} |
{% if subscription.total_local %}£{{ subscription.total_local|floatformat:2 }}{% endif %} |
|
|
|
{% endfor %}
{% else %}
There are no subscription entries for this member
{% endif %}
Meeting Bookings
{% if meeting_bookings %}
| Name |
Date |
Status |
|
{% for booking in meeting_bookings %}
| {{ booking.meeting }} |
{{ booking.time }} |
{{ booking.get_status_display }} |
|
{% endfor %}
{% else %}
There are no bookings for this member
{% endif %}
Member Contact
{% if member_contacts %}
| Date |
Type |
Subject |
|
{% for contact in member_contacts %}
| {{ contact.contact_date }} |
{{ contact.contact_type }} |
{{ contact.subject }} |
|
|
|
{% endfor %}
{% else %}
There is no contact for this member
{% endif %}
Member Committee
{% if member_committees %}
| Committee |
Position |
Start Date |
End Date |
|
{% for committee in member_committees %}
| {{ committee.committee }} |
{{ committee.position }} |
{{ committee.start_date }} |
{{ committee.end_date }} |
|
|
|
{% endfor %}
{% else %}
There are no committee entries for this member
{% endif %}
Member Classification
{% if member_classifications %}
| Classification |
Class Date |
|
{% for classification in member_classifications %}
| {{ classification.classification }} |
{{ classification.class_date }} |
|
|
|
{% endfor %}
{% else %}
There are no classification entries for this member
{% endif %}