billing frontend for mariadb. setup as otb_billing for outsidethebox.top accounting. also involved with outsidethedb
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.
 
 
 

49 lines
1.0 KiB

<!doctype html>
<html>
<head>
<title>Services</title>
<link rel="icon" type="image/png" href="/static/favicon.png">
</head>
<body>
<h1>Services</h1>
<p><a href="/">Home</a></p>
<p><a href="/services/new">Add Service</a></p>
<table border="1" cellpadding="6">
<tr>
<th>ID</th>
<th>Service Code</th>
<th>Client</th>
<th>Service Name</th>
<th>Type</th>
<th>Cycle</th>
<th>Currency</th>
<th>Amount</th>
<th>Status</th>
<th>Start Date</th>
<th>Actions</th>
</tr>
{% for s in services %}
<tr>
<td>{{ s.id }}</td>
<td>{{ s.service_code }}</td>
<td>{{ s.client_code }} - {{ s.company_name }}</td>
<td>{{ s.service_name }}</td>
<td>{{ s.service_type }}</td>
<td>{{ s.billing_cycle }}</td>
<td>{{ s.currency_code }}</td>
<td>{{ s.recurring_amount|money(s.currency_code) }}</td>
<td>{{ s.status }}</td>
<td>{{ s.start_date }}</td>
<td><a href="/services/edit/{{ s.id }}">Edit</a></td>
</tr>
{% endfor %}
</table>
{% include "footer.html" %}
</body>
</html>