elbot/templates/inv.tmpl

36 lines
533 B
Cheetah

<!DOCTYPE html>
<html>
<style>
table {
border-collapse: collapse;
width: 50%;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #DDD;
}
tr:hover {background-color: #D6EEEE;}
</style>
<body>
<h1>Inventory</h1>
We have the following in our inventory:<br>
<br>
<table>
<tr>
<th>Item name</th>
<th>Quantity</th>
<th>Price</th>
</tr>
{{range .}}
<tr>
<td>{{.Text}}</td><td>{{.Quantity}}</td><td>{{.Price}}</td>
</tr>
{{end}}
</table>
</body>
</html>