You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 lines
666 B

{% extends "base.html" %}
{% load staticfiles %}
{% block title %}Pricing - It's Free! - healthchecks.io{% endblock %}
{% block content %}
<h1>Subscription Status</h1>
<dl>
<dt>Status</dt>
<dd>{{ subscription.status }}</dd>
<dt>Next Billing Date:</dt>
<dd>{{ subscription.next_billing_date }}</dd>
<dt>Amount</dt>
<dd>{{ subscription.price }} / Month</dd>
</dl>
<h2>Transactions</h2>
<table class="table">
<tr>
<th>Date</th>
<th>Amount</th>
</tr>
{% for tx in subscription.transactions %}
<tr>
<td>???</td>
<td>{{ tx.amount }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}