mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-09-10 20:07:12 +02:00
Implemented icons for basket products
This commit is contained in:
@@ -11,6 +11,7 @@ basket
|
||||
<th>price(net)</th>
|
||||
<th>tax (%)</th>
|
||||
<th>price (gross)</th>
|
||||
<th>image</th>
|
||||
</tr>
|
||||
{% for product in basket.products %}
|
||||
<tr>
|
||||
@@ -19,6 +20,7 @@ basket
|
||||
<td>{{product.price.netto.float}} {{product.price.netto.symbol}}</td>
|
||||
<td>{{product.price.tax}}</td>
|
||||
<td>{{product.price.gross.float}} {{product.price.gross.symbol}}</td>
|
||||
<td><img src="{{product.image.icon }}" /></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
Reference in New Issue
Block a user