Files
discourse-subscriptions/assets/javascripts/discourse/components/payment-options.hbs
T

13 lines
277 B
Handlebars
Raw Normal View History

2019-12-10 10:55:24 +11:00
<p>
{{i18n "discourse_subscriptions.plans.select"}}
2019-12-10 10:55:24 +11:00
</p>
2019-12-06 13:52:03 +11:00
<div class="subscribe-buttons">
2024-11-20 17:34:34 +00:00
{{#each this.orderedPlans as |plan|}}
2023-05-28 09:32:27 -05:00
<PaymentPlan
@plan={{plan}}
2024-11-20 17:34:34 +00:00
@selectedPlan={{this.selectedPlan}}
2023-05-28 09:32:27 -05:00
@clickPlan={{action "clickPlan"}}
/>
2019-12-06 13:52:03 +11:00
{{/each}}
</div>