85 lines
No EOL
3.4 KiB
HTML
85 lines
No EOL
3.4 KiB
HTML
{% extends "new_base_glarus.html" %}
|
|
{% load staticfiles bootstrap3 i18n %}
|
|
{% block content %}
|
|
|
|
|
|
<!-- Header -->
|
|
<!-- Services Section -->
|
|
<section id="price">
|
|
<div class="signup-container">
|
|
<div class="col-xs-12 col-sm-6 col-lg-8 text-center wow fadeInDown">
|
|
<div class="payment-box">
|
|
<h2 class="section-heading payment-head">Your Membership History</h2>
|
|
<hr class="greyline-long">
|
|
<h2 class="order-head">Member Name</h2>
|
|
<h2 class="member-name">{{request.user.name}}</h2>
|
|
<hr class="greyline-long">
|
|
<h2 class="order-head">Active Membership</h2>
|
|
<h2 class="member-name">{{membership_start_date|date}}-{{membership_end_date|date}}</h2>
|
|
<hr class="greyline-long">
|
|
<h2 class="order-head">Orders history</h2>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Valid Month</th>
|
|
<th>Date</th>
|
|
<th>Invoice</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for order in orders%}
|
|
<tr>
|
|
<th scope="row">{{order.id}}</th>
|
|
<td>{{order.created_at|date:"F"}}</td>
|
|
<td>{{order.created_at|date}}</td>
|
|
<td><a class="btn btn-xs btn-primary btn-darkgrey" href="{% url 'digitalglarus:membership_orders_detail' order.id %}">View</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<h2 class="order-head">Billing Adress<btn class="btn btn-primary btn-grey btn-edit">Edit</btn></h2>
|
|
<h2 class="history-name">Nico Schottelius<br>
|
|
In der Au 7 8762 Schwanden<br>
|
|
Switzerland
|
|
</h2>
|
|
|
|
<hr class="greyline-long">
|
|
<h2 class="order-head">Your Next Membership</h2>
|
|
<h2 class="history-name">
|
|
Dates: {{membership_start_date|date}} - {{membership_end_date|date}}<br>
|
|
</h2>
|
|
<h2 class="history-name">
|
|
|
|
<a class="btn btn-primary btn-grey btn-edit print" href="{% url 'digitalglarus:membership_deactivate' %}">Deactivate</a>
|
|
</h2>
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
<span>You will be charged on the first of the month until you
|
|
cancel your subscription. Previous charges won't be refunded.</span>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="col-xs-12 col-sm-4 col-lg-4 wow fadeInDown">
|
|
<div class="order-summary">
|
|
<h2 class="thankyou">Thank You!</h2>
|
|
<div class="order-box">
|
|
<span class="glyphicon glyphicon-heart icon-up"></span>
|
|
<h2 class="signup-lead text-center">Digital Glarus lives with your love!<br>
|
|
Our coworking space is here because of your love and support.</h2>
|
|
|
|
<hr class="greyline">
|
|
|
|
<p class="order-bottom-text text-center">This box is here just to thank you</p>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{% endblock %} |