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

Your Membership History


Member Name

{{request.user.name}}


Current Membership

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


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}}

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


Your Next Membership

Dates: {{membership_start_date|date}} - {{membership_end_date|date}}


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 %}