{% extends "new_base_glarus.html" %} {% load staticfiles bootstrap3 i18n %} {% block content %}

Your Membership History


Member Name

{{request.user.name}}


Current Membership

{% if membership_start_date and membership_end_date%}

{{membership_start_date|date}}-{{membership_end_date|date}}

{% else %}

You don't have an active membership

{% endif %}

Orders history

{% for order in orders%} {% endfor %}
# Valid Month Date Invoice
{{order.id}} {{order.created_at|date:"F"}} {{order.created_at|date}} View

Billing AdressEdit

{{request.user.name}}

{% if billing_address %}

{{billing_address.street_address}},{{billing_address.postal_code}}
{{billing_address.city}}, {{billing_address.country}}.

{% else %}

Edit your billing address

{% endif %}

Your Next Membership

{% if next_membership_start_date and next_membership_end_date and current_membership.active %}

Dates: {{next_membership_start_date|date}} - {{next_membership_end_date|date}}

{% elif current_membership.active == False %}

Your membership is deactivated

{% else %}

You are not a member.

{% endif %} {% if not current_membership == None %} {% if current_membership.active %} {% elif not current_membership.active %} {% endif %} {% else %} {% endif %}

You will be charged on the first of the month until you cancel your subscription. Previous charges won't be refunded.

{% if messages %}

Message


{% for message in messages %} {% endfor %}
{% else %}

Thank You!


This box is here just to thank you

{% endif %}
{% endblock %}