10 lines
385 B
HTML
10 lines
385 B
HTML
{{#each items}}
|
|
<div class="col-xl-2 col-lg-4 col-6 mt-2" name={{this.name}} id="item-{{@key}}">
|
|
<img class="img-fluid rounded-3" src={{this.image}}>
|
|
<div>
|
|
{{this.name}}
|
|
<a href="#" class="btn btn-outline-primary text-center d-flex justify-content-md-center mx-5"
|
|
onclick="removeItemFromTable({{@key}})">Удалить</a>
|
|
</div>
|
|
</div>
|
|
{{/each}} |