|
@@ -1,27 +1,26 @@
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
{% block content %}
|
|
|
-<div class="row">
|
|
|
- <h2>Mes abonnements</h2>
|
|
|
+<h2>Mes abonnements</h2>
|
|
|
|
|
|
- <table id="member_subscriptions" class="full-width">
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th width="60">Type</th>
|
|
|
- <th>Identification</th>
|
|
|
- <th>Date d'activation</th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody>
|
|
|
- {% for subscription in subscriptions %}
|
|
|
- <tr>
|
|
|
- <td>{{ subscription.offer.type }}</td>
|
|
|
- <td>{{ subscription.offer.name }}</td>
|
|
|
- <td>{{ subscription.subscription_date }}</td>
|
|
|
- </tr>
|
|
|
- {% endfor %}
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
+<table id="member_subscriptions" class="full-width">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th width="60">Type</th>
|
|
|
+ <th>Identification</th>
|
|
|
+ <th>Date d'activation</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ {% for subscription in subscriptions %}
|
|
|
+ <tr>
|
|
|
+ <td>{{ subscription.offer.type }}</td>
|
|
|
+ <td>{{ subscription.offer.name }}</td>
|
|
|
+ <td>{{ subscription.subscription_date }}</td>
|
|
|
+ </tr>
|
|
|
+ {% endfor %}
|
|
|
+ </tbody>
|
|
|
+</table>
|
|
|
<!--
|
|
|
<div class="panel">
|
|
|
<h3>Stats générales ADSL</h3>
|
|
@@ -31,5 +30,5 @@
|
|
|
<h3>Stats générales VPN</h3>
|
|
|
<a class="button">Voir le VPN</a>
|
|
|
</div>-->
|
|
|
- </div>
|
|
|
+
|
|
|
{% endblock %}
|