Files
2022-01-05 15:18:26 -05:00

34 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Pro Go</title>
<link rel="stylesheet" href="/files/bootstrap.min.css" >
</head>
<body>
<h3 class="bg-primary text-white text-center p-2 m-2">Products</h3>
<div class="p-2">
<table class="table table-sm table-striped table-bordered">
<thead>
<tr>
<th>Index</th><th>Name</th><th>Category</th>
<th class="text-end">Price</th>
</tr>
</thead>
<tbody>
{{ range $index, $product := .Data }}
<tr>
<td>{{ $index }}</td>
<td>{{ $product.Name }}</td>
<td>{{ $product.Category }}</td>
<td class="text-end">
{{ printf "$%.2f" $product.Price }}
</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
</body>
</html>