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.
36 lines
854 B
36 lines
854 B
<!doctype html> |
|
<html> |
|
<head> |
|
<title>OTB Billing Dashboard</title> |
|
</head> |
|
<body> |
|
|
|
<h1>{{ app_settings.business_name or '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="/settings">Settings / Config</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 Eastern Time (Toronto).</p> |
|
|
|
{% include "footer.html" %} |
|
</body> |
|
</html>
|
|
|