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.
34 lines
732 B
34 lines
732 B
<!doctype html> |
|
<html> |
|
<head> |
|
<title>OTB Billing Dashboard</title> |
|
</head> |
|
<body> |
|
|
|
<h1>OTB Billing Dashboard</h1> |
|
|
|
<p><a href="/clients">Clients</a></p> |
|
<p><a href="/services">Services</a></p> |
|
<p><a href="/invoices">Invoices</a></p> |
|
<p><a href="/payments">Payments</a></p> |
|
<p><a href="/dbtest">DB Test</a></p> |
|
|
|
<table border="1" cellpadding="10"> |
|
<tr> |
|
<th>Total Clients</th> |
|
<th>Active Services</th> |
|
<th>Outstanding Invoices</th> |
|
<th>Revenue Received (CAD)</th> |
|
</tr> |
|
<tr> |
|
<td>{{ total_clients }}</td> |
|
<td>{{ active_services }}</td> |
|
<td>{{ outstanding_invoices }}</td> |
|
<td>{{ revenue_received|money('CAD') }}</td> |
|
</tr> |
|
</table> |
|
|
|
<p>Displayed times are shown in America/Toronto.</p> |
|
|
|
</body> |
|
</html>
|
|
|