1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/templates/admin-wizards-custom-fields.hbs
2023-07-10 07:55:54 +01:00

43 Zeilen
Kein EOL
944 B
Handlebars

<div class="admin-wizard-controls">
<h3>{{i18n "admin.wizard.custom_field.nav_label"}}</h3>
<div class="buttons">
{{d-button
label="admin.wizard.custom_field.add"
icon="plus"
action=(action "addField")
}}
</div>
</div>
{{wizard-message
key=messageKey
opts=messageOpts
type=messageType
url=documentationUrl
component="custom_fields"
}}
<div class="admin-wizard-container">
{{#if customFields}}
<table>
<thead>
<tr>
{{#each fieldKeys as |key|}}
<th>{{i18n (concat "admin.wizard.custom_field." key ".label")}}</th>
{{/each}}
<th></th>
</tr>
</thead>
<tbody>
{{#each customFields as |field|}}
{{custom-field-input
field=field
removeField=(action "removeField")
saveField=(action "saveField")
}}
{{/each}}
</tbody>
</table>
{{/if}}
</div>