Private
Public Access
1
0

errors fixed

This commit is contained in:
Sander Roosendaal
2018-12-31 16:45:46 +01:00
parent 1968832eba
commit 117836a102
9 changed files with 30 additions and 15 deletions

View File

@@ -12,7 +12,8 @@
<table class="plantable shortpadded" width="80%">
<thead>
<tr>
<th>Subscription</th><th>Next Billing Date</th><th>Price</th><th>&nbsp;</th>
<th>Subscription</th><th>Paid Until</th><th>Price</th>
<th>Subscription type</th><th>&nbsp;</th>
</tr>
</thead>
<tbody>
@@ -27,6 +28,13 @@
<td>
{{ subscription|lookup:"price" }} &euro;
</td>
<td>
{% if subscription|lookup:"never_expires" %}
Recurring
{% else %}
Not recurring
{% endif %}
</td>
<td>
<a href="/rowers/me/cancelsubscription/{{ subscription|lookup:'id' }}">Stop this plan</a>
</td>