added currency

This commit is contained in:
Hazel Noack 2025-07-10 14:58:44 +02:00
parent 08d2446329
commit e704e37683

View File

@ -27,7 +27,7 @@
{{range $Listing := .Listings }} {{range $Listing := .Listings }}
<a target="_blank" href="{{ $Listing.Url }}" class="card {{ if $Listing.InStock }}in-stock{{ end }}"> <a target="_blank" href="{{ $Listing.Url }}" class="card {{ if $Listing.InStock }}in-stock{{ end }}">
<h3>{{ $Listing.ProductName }}</h3> <h3>{{ $Listing.ProductName }}</h3>
<p>{{ $Listing.StoreName }} - {{ $Listing.Price }}</p> <p>{{ $Listing.StoreName }} - {{ $Listing.Price }} {{ $Listing.PriceCurrency }}</p>
</a> </a>
{{- end }} {{- end }}
</div> </div>