Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-14 22:02:53 +01:00
28 Zeilen
Kein EOL
787 B
Handlebars
28 Zeilen
Kein EOL
787 B
Handlebars
<section class="details">
|
|
<h1>{{i18n "admin.wizard.user.label"}}</h1>
|
|
|
|
<div class="display-row">
|
|
<div class="field">{{i18n "admin.wizard.user.redirect.label"}}</div>
|
|
<div class="value">
|
|
{{#if model.redirect_to_wizard}}
|
|
<LinkTo
|
|
@route="adminWizardsWizardShow"
|
|
@model={{dasherize model.redirect_to_wizard}}
|
|
>
|
|
{{model.redirect_to_wizard}}
|
|
</LinkTo>
|
|
{{else}}
|
|
—
|
|
{{/if}}
|
|
</div>
|
|
<div class="controls">
|
|
{{#if model.redirect_to_wizard}}
|
|
<DButton
|
|
@action={{fn model.clearWizardRedirect model}}
|
|
@label="admin.wizard.user.redirect.remove_label"
|
|
@title="admin.wizard.user.redirect.remove_title"
|
|
/>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</section> |