{% extends "admin.html" %}
{% load url from future %}
{% block headtitle %}Manage Members {% endblock %}
{% block members_active %}active{% endblock %}
{% block content %}
Membership Details
| Name |
{{ invoice.member }} |
| Email Address |
{{ invoice.member.user.email }} |
| Type: |
{{ invoice.member.member_type }} |
| Renewal Fee: |
{{ invoice.member.member_type.renewal_fee }} |
Invoice Details
| Created |
{{ invoice.created }} |
| Organisation Name |
{{ invoice.organisation_name }} |
| Address 1: |
{{ invoice.address_1 }} |
{% if invoice.address_2 %}
| Address 2: |
{{ invoice.address_2 }} |
{% endif %}
{% if invoice.address_3 %}
| Address 3: |
{{ invoice.address_3 }} |
{% endif %}
| Town |
{{ invoice.town }} |
| Country |
{{ invoice.country }} |
| Postcode |
{{ invoice.postcode }} |
| PO Number / Contact Name
| {{ invoice.po_number }} |
| Email Address |
{{ invoice.email_address }} |
| Telephone |
{{ invoice.telephone }} |
Back to Invoices Back to Member
{% endblock %}