2022-01-17 21:53:43 +03:00
|
|
|
<div class="gh-main-content-card gh-product-card">
|
|
|
|
<button class="gh-product-card-editbutton gh-btn gh-btn-text gh-btn-link green" {{action "openEditProduct" this.product}}>
|
|
|
|
<span>Edit</span>
|
|
|
|
</button>
|
|
|
|
<div class="gh-product-card-block title-block">
|
|
|
|
<h3 class="gh-product-card-name">
|
|
|
|
{{this.product.name}}
|
|
|
|
</h3>
|
|
|
|
<p class="gh-product-card-description">
|
|
|
|
{{this.product.description}}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="gh-product-card-block benefits-block">
|
|
|
|
<h4>Benefits <span class="counter">({{if this.product.benefits.length product.benefits.length "0"}})</span></h4>
|
|
|
|
{{#if this.product.benefits.length}}
|
|
|
|
<ul class="benefits">
|
|
|
|
{{#each this.product.benefits as |benefit|}}
|
|
|
|
<li>{{svg-jar "check"}} {{benefit.name}} </li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{else}}
|
|
|
|
<p class="gh-product-card-description">No benefits added for this tier.</p>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{#if (eq this.product.type "free" )}}
|
|
|
|
<div class="gh-product-card-block">
|
|
|
|
<div class="gh-product-price-container">
|
|
|
|
<div class="gh-product-card-price">
|
|
|
|
<div class="flex items-start">
|
2022-01-19 10:34:08 +03:00
|
|
|
<span class="currency">{{currency-symbol this.productCurrency}}</span>
|
2022-01-17 21:53:43 +03:00
|
|
|
<span class="amount">0</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
{{#if (eq this.product.type "paid" )}}
|
|
|
|
<div class="gh-product-card-block">
|
|
|
|
<div class="gh-product-price-container">
|
|
|
|
<div class="gh-product-card-price">
|
|
|
|
<div class="flex items-start">
|
2022-01-19 10:34:08 +03:00
|
|
|
<span class="currency">{{currency-symbol this.productCurrency}}</span>
|
2022-01-17 21:53:43 +03:00
|
|
|
<span class="amount">{{gh-price-amount this.product.monthlyPrice.amount}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="period">Monthly</div>
|
|
|
|
</div>
|
|
|
|
<div class="gh-product-card-price">
|
|
|
|
<div class="flex items-start">
|
2022-01-19 10:34:08 +03:00
|
|
|
<span class="currency">{{currency-symbol this.productCurrency}}</span>
|
2022-01-17 21:53:43 +03:00
|
|
|
<span class="amount">{{gh-price-amount this.product.yearlyPrice.amount}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="period">Yearly</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|