added a price visualization on the cards page

This commit is contained in:
stasex 2023-11-09 13:50:27 +02:00
parent 17cd3bf438
commit 3f60c2fb33

View File

@ -10,7 +10,7 @@
<img class="star" src="~/assets/star.png">
<label class="rating">@product.Rating</label>
@{
string price = "N/A";
string price = @product.Price.ToString();
}
<label class="price-label">@price</label>
</div>