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.
40 lines
503 B
40 lines
503 B
<!doctype html> |
|
<html> |
|
<head> |
|
<title>Clients</title> |
|
</head> |
|
|
|
<body> |
|
|
|
<h1>Clients</h1> |
|
|
|
<p><a href="/clients/new">Add Client</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> |
|
</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> |
|
</tr> |
|
|
|
{% endfor %} |
|
|
|
</table> |
|
|
|
</body> |
|
</html>
|
|
|