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.
46 lines
899 B
46 lines
899 B
<!doctype html> |
|
<html> |
|
<head> |
|
<title>Services</title> |
|
</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> |
|
</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> |
|
</tr> |
|
{% endfor %} |
|
|
|
</table> |
|
|
|
{% include "footer.html" %} |
|
</body> |
|
</html>
|
|
|