You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
408 B
14 lines
408 B
<h3>Commande en cours</h3>
|
|
|
|
@for (item of delivery.shoppingCart; track item.id) {
|
|
<div class="container">
|
|
<img [src]="item.image || 'https://placehold.co/200x200'" [alt]="item.image ? item.name : ''" width="200" height="200">
|
|
<div class="container_text">
|
|
<h1>{{item.name}}</h1>
|
|
<p>
|
|
{{item.description}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
}
|