2024-11-20 17:34:34 +00:00
|
|
|
{{#if this.emptyProducts}}
|
2021-07-04 21:53:55 +02:00
|
|
|
<p>{{i18n "discourse_subscriptions.subscribe.no_products"}}</p>
|
2020-05-28 10:32:57 -05:00
|
|
|
{{else}}
|
2024-11-20 17:34:34 +00:00
|
|
|
{{#each this.products as |product|}}
|
|
|
|
|
<ProductItem @product={{product}} @isLoggedIn={{this.isLoggedIn}} />
|
2020-05-28 10:32:57 -05:00
|
|
|
{{/each}}
|
2023-01-04 12:39:58 +00:00
|
|
|
{{/if}}
|