Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
0bc151fc7b
Currently modal and edit columns works but removes only field and not corresponding submission.
32 Zeilen
879 B
Handlebars
32 Zeilen
879 B
Handlebars
{{#d-modal-body title="directory.edit_columns.title"}}
|
|
{{#if loading}}
|
|
{{loading-spinner size="large"}}
|
|
{{else}}
|
|
<div class="edit-directory-columns-container">
|
|
{{#each model.fields as |field|}}
|
|
<div class="edit-directory-column">
|
|
<div class="left-content">
|
|
<label class="column-name">
|
|
{{input type="checkbox" checked=field.enabled}}
|
|
{{directory-table-header-title field=field.label translated=true}}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
{{/d-modal-body}}
|
|
|
|
<div class="modal-footer">
|
|
{{d-button
|
|
class="btn-primary"
|
|
label="directory.edit_columns.save"
|
|
action=(action "save")
|
|
}}
|
|
|
|
{{d-button
|
|
class="btn-secondary reset-to-default"
|
|
label="directory.edit_columns.reset_to_default"
|
|
action=(action "resetToDefault")
|
|
}}
|
|
</div>
|