mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
683cb28099
This pr replaces `{{{ }}}` usage by a {{html-safe}} helper. While it doesn't solve the underlying issue, it gives us a path forward without risking breaking too much existing behavior. Also introduces an htmlSafe computed macro: ``` import { htmlSafe } from "discourse/lib/computed"; htmlDescription: htmlSafe("description") ``` Overtime {{html-safe}} usage should be removed and moved to components properties or specialized components/helpers.
62 lines
2.4 KiB
Handlebars
62 lines
2.4 KiB
Handlebars
{{#if editing}}
|
|
{{#admin-form-row label="admin.user_fields.type"}}
|
|
{{combo-box
|
|
content=fieldTypes
|
|
value=buffered.field_type
|
|
onChange=(action (mut buffered.field_type))
|
|
}}
|
|
{{/admin-form-row}}
|
|
|
|
{{#admin-form-row label="admin.user_fields.name"}}
|
|
{{input value=buffered.name class="user-field-name" maxlength="255"}}
|
|
{{/admin-form-row}}
|
|
|
|
{{#admin-form-row label="admin.user_fields.description"}}
|
|
{{input value=buffered.description class="user-field-desc" maxlength="255"}}
|
|
{{/admin-form-row}}
|
|
|
|
{{#if bufferedFieldType.hasOptions}}
|
|
{{#admin-form-row label="admin.user_fields.options"}}
|
|
{{value-list values=buffered.options inputType="array"}}
|
|
{{/admin-form-row}}
|
|
{{/if}}
|
|
|
|
{{#admin-form-row wrapLabel="true"}}
|
|
{{input type="checkbox" checked=buffered.editable}} {{i18n "admin.user_fields.editable.title"}}
|
|
{{/admin-form-row}}
|
|
|
|
{{#admin-form-row wrapLabel="true"}}
|
|
{{input type="checkbox" checked=buffered.required}} {{i18n "admin.user_fields.required.title"}}
|
|
{{/admin-form-row}}
|
|
|
|
{{#admin-form-row wrapLabel="true"}}
|
|
{{input type="checkbox" checked=buffered.show_on_profile}} {{i18n "admin.user_fields.show_on_profile.title"}}
|
|
{{/admin-form-row}}
|
|
|
|
{{#admin-form-row wrapLabel="true"}}
|
|
{{input type="checkbox" checked=buffered.show_on_user_card}} {{i18n "admin.user_fields.show_on_user_card.title"}}
|
|
{{/admin-form-row}}
|
|
|
|
{{#admin-form-row}}
|
|
{{d-button action=(action "save") class="btn-primary" icon="check" label="admin.user_fields.save"}}
|
|
{{d-button action=(action "cancel") class="btn-danger" icon="times" label="admin.user_fields.cancel"}}
|
|
{{/admin-form-row}}
|
|
{{else}}
|
|
<div class="row">
|
|
<div class="form-display">
|
|
<strong>{{userField.name}}</strong>
|
|
<br>
|
|
{{html-safe userField.description}}
|
|
</div>
|
|
<div class="form-display">{{fieldName}}</div>
|
|
<div class="form-element controls">
|
|
{{d-button action=(action "edit") class="btn-default" icon="pencil-alt" label="admin.user_fields.edit"}}
|
|
{{d-button action=destroyAction actionParam=userField class="btn-danger" icon="far-trash-alt" label="admin.user_fields.delete"}}
|
|
{{d-button action=moveUpAction actionParam=userField class="btn-default" icon="arrow-up" disabled=cantMoveUp}}
|
|
{{d-button action=moveDownAction actionParam=userField class="btn-default" icon="arrow-down" disabled=cantMoveDown}}
|
|
</div>
|
|
</div>
|
|
<div class="row">{{flags}}</div>
|
|
{{/if}}
|
|
<div class="clearfix"></div>
|