{%extends "nav_account.html"%} {%block title%}Membership{%endblock%} {%block content%}

Your Membership

{%if not registration_complete%}

You are not currently registered as a member of {{ org_name }}. You can do this using the form on this page. Please read through the membership rules before you register, and if you are uncertain about anything feel free to contact us.

Once you have registered, you will be able to generate an invoice for your membership fee. Your membership is not active until you have paid the fee!

Note that all the information on the form must be filled accurately, or your membership will not be valid even if it is fully paid.

{%endif%}
{% csrf_token%} {%include "forms/form_content.html" %}
{%if registration_complete%}

Membership Status

{%if member.membersince %}

You have been a member since {{member.membersince}}.

{%endif%} {%if member.paiduntil %} {%if member.expiressoon %}

Your membership is currently active but will expire in {{member.paiduntil|timeuntil}} on {{member.paiduntil}}.

{%else%}

Your membership and payment has been registered, and will expire on {{member.paiduntil}}.

{%endif%} {%else%}

Your membership will become active once you have paid the fee.

{%endif%}
{%if member.expiressoon%} {%if member.activeinvoice%} {%include "invoices/userinvoice_spec.html"%} {%else%}

To pay or renew your membership, please use the button below to generate an invoice. You will then be able to pay this invoice using several different methods.

{%csrf_token%}
{%endif%}{%comment%}invoice or not{%endcomment%} {%endif%}{%comment%}member.expiressoon{%endcomment%} {%endif%}{%comment%}registration_complete{%endcomment%} {%if logdata%}

Membership activity

{%for l in logdata%} {%endfor%}
{{l.timestamp|date:"Y-m-d H:i"}} {{l.message}}
{%endif%} {%if mails%}

Membership emails

The following emails have been sent to you during your membership.

{%for m in mails%} {%endfor%}
{{m.sentat}} {{m.subject}}
{%endif%} {%endblock%}