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.
45 lines
657 B
45 lines
657 B
<!doctype html> |
|
<html> |
|
<head> |
|
<title>Invoices</title> |
|
</head> |
|
|
|
<body> |
|
|
|
<h1>Invoices</h1> |
|
|
|
<p><a href="/">Home</a></p> |
|
<p><a href="/invoices/new">Create Invoice</a></p> |
|
|
|
<table border="1" cellpadding="6"> |
|
|
|
<tr> |
|
<th>ID</th> |
|
<th>Invoice</th> |
|
<th>Client</th> |
|
<th>Currency</th> |
|
<th>Total</th> |
|
<th>Status</th> |
|
<th>Issued</th> |
|
<th>Due</th> |
|
</tr> |
|
|
|
{% for i in invoices %} |
|
|
|
<tr> |
|
<td>{{ i.id }}</td> |
|
<td>{{ i.invoice_number }}</td> |
|
<td>{{ i.client_code }} - {{ i.company_name }}</td> |
|
<td>{{ i.currency_code }}</td> |
|
<td>{{ i.total_amount }}</td> |
|
<td>{{ i.status }}</td> |
|
<td>{{ i.issued_at }}</td> |
|
<td>{{ i.due_at }}</td> |
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
</body> |
|
</html>
|
|
|