0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2025-02-01 19:07:02 +01:00
discourse-custom-wizard/assets/javascripts/wizard/templates/custom.index.hbs

16 Zeilen
501 B
Handlebars

2019-06-19 13:23:10 +08:00
{{#if noWizard}}
{{wizard-no-access text=(i18n 'wizard.none') wizardId=wizardId}}
2017-11-29 17:48:49 +08:00
{{else}}
2019-06-19 13:23:10 +08:00
{{#if requiresLogin}}
2019-06-19 13:39:39 +08:00
{{wizard-no-access text=(i18n 'wizard.requires_login' name=name) wizardId=wizardId}}
2019-06-19 13:23:10 +08:00
{{else}}
{{#if notPermitted}}
2020-03-30 17:16:03 +11:00
{{wizard-no-access text=(i18n 'wizard.not_permitted' name=name) wizardId=wizardId}}
2019-06-19 13:23:10 +08:00
{{else}}
{{#if completed}}
2019-06-19 13:39:39 +08:00
{{wizard-no-access text=(i18n 'wizard.completed' name=name) wizardId=wizardId}}
2019-06-19 13:23:10 +08:00
{{/if}}
{{/if}}
2017-12-03 15:57:40 +08:00
{{/if}}
2017-10-13 21:02:34 +08:00
{{/if}}