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.
 
 
 

46 lines
846 B

<!doctype html>
<html>
<head>
<title>Clients</title>
</head>
<body>
<h1>Clients</h1>
<p><a href="/">Home</a></p>
<p><a href="/clients/new">Add Client</a></p>
<p><a href="/clients/export.csv">Export CSV</a></p>
<table border="1" cellpadding="6">
<tr>
<th>ID</th>
<th>Code</th>
<th>Company</th>
<th>Contact</th>
<th>Email</th>
<th>Phone</th>
<th>Status</th>
<th>Actions</th>
</tr>
{% for c in clients %}
<tr>
<td>{{ c.id }}</td>
<td>{{ c.client_code }}</td>
<td>{{ c.company_name }}</td>
<td>{{ c.contact_name }}</td>
<td>{{ c.email }}</td>
<td>{{ c.phone }}</td>
<td>{{ c.status }}</td>
<td>
<a href="/clients/edit/{{ c.id }}">Edit</a> |
<a href="/credits/{{ c.id }}">Ledger</a>
</td>
</tr>
{% endfor %}
</table>
{% include "footer.html" %}
</body>
</html>