37 lines
905 B
HTML
37 lines
905 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Pro Go</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/static/bootstrap.min.css" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
<div class="m-1 p-2 bg-primary text-white h2 text-center">
|
|
Products
|
|
</div>
|
|
<table class="table table-sm table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Index</th>
|
|
<th>Name</th>
|
|
<th>Category</th>
|
|
<th class="text-end">Price</th>
|
|
<th class="text-center">Description</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>
|
|
<th class="text-center"><a href="edit.html?index={{ $index }}">Edit</a></th>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
|
|
</body>
|
|
</html> |