19 lines
413 B
HTML
19 lines
413 B
HTML
{{ template "header.html" . }}
|
|
|
|
{{ range .data.cartItems }}
|
|
|
|
<div class="group relative">
|
|
<div class="mt-4 flex justify-between">
|
|
<div>
|
|
<h3 class="text-sm text-gray-700">
|
|
{{ .ShopItemId }}
|
|
</h3>
|
|
</div>
|
|
<p class="text-sm font-medium text-gray-900">{{ .Quantity }} pieces</p>
|
|
</div>
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ template "footer.html" . }}
|