2021-08-20 13:14:37 +03:00
|
|
|
<label>Tiers</label>
|
2021-06-04 12:35:28 +03:00
|
|
|
<div class="gh-product-cards">
|
2021-06-04 14:02:16 +03:00
|
|
|
{{#each this.products as |product productIdx|}}
|
2022-01-17 21:53:43 +03:00
|
|
|
<GhProductCard
|
|
|
|
@product={{product}}
|
|
|
|
@openEditProduct={{this.openEditProduct}}
|
|
|
|
/>
|
2021-06-04 10:37:47 +03:00
|
|
|
{{/each}}
|
2021-06-04 12:35:28 +03:00
|
|
|
|
|
|
|
<div class="gh-product-cards-footer">
|
2021-07-19 13:38:51 +03:00
|
|
|
<button class="gh-btn gh-btn-link gh-btn-text gh-btn-icon gh-btn-add-product green" {{action "openNewProduct" product}}><span>{{svg-jar "add-stroke" class="stroke-green"}}Add tier</span></button>
|
2021-06-04 12:35:28 +03:00
|
|
|
</div>
|
2021-06-04 10:37:47 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#if this.showProductModal}}
|
|
|
|
<GhFullscreenModal
|
|
|
|
@modal="product"
|
|
|
|
@model={{hash
|
|
|
|
product=this.productModel
|
|
|
|
}}
|
|
|
|
@confirm={{this.confirmProductSave}}
|
|
|
|
@close={{this.closeProductModal}}
|
2021-06-18 11:51:06 +03:00
|
|
|
@modifier="edit-product action wide" />
|
2021-06-21 11:36:17 +03:00
|
|
|
{{/if}}
|