2015-07-11 00:28:56 +08:00
|
|
|
{{#if editing}}
|
2015-07-28 02:22:12 +08:00
|
|
|
{{#admin-form-row label="admin.user_fields.type"}}
|
2017-10-20 03:51:08 +08:00
|
|
|
{{combo-box content=fieldTypes value=buffered.field_type}}
|
2015-07-28 02:22:12 +08:00
|
|
|
{{/admin-form-row}}
|
|
|
|
|
|
|
|
{{#admin-form-row label="admin.user_fields.name"}}
|
2018-01-30 19:34:18 +08:00
|
|
|
{{input value=buffered.name class="user-field-name" maxlength="255"}}
|
2015-07-28 02:22:12 +08:00
|
|
|
{{/admin-form-row}}
|
|
|
|
|
|
|
|
{{#admin-form-row label="admin.user_fields.description"}}
|
2018-01-30 19:34:18 +08:00
|
|
|
{{input value=buffered.description class="user-field-desc" maxlength="255"}}
|
2015-07-28 02:22:12 +08:00
|
|
|
{{/admin-form-row}}
|
|
|
|
|
2015-07-29 00:29:40 +08:00
|
|
|
{{#if bufferedFieldType.hasOptions}}
|
|
|
|
{{#admin-form-row label="admin.user_fields.options"}}
|
|
|
|
{{value-list values=buffered.options inputType="array"}}
|
|
|
|
{{/admin-form-row}}
|
|
|
|
{{/if}}
|
|
|
|
|
2015-07-28 02:22:12 +08:00
|
|
|
{{#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}}
|
|
|
|
|
2016-04-08 20:35:41 +08:00
|
|
|
{{#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}}
|
|
|
|
|
2015-07-28 02:22:12 +08:00
|
|
|
{{#admin-form-row}}
|
|
|
|
{{d-button action="save" class="btn-primary" icon="check" label="admin.user_fields.save"}}
|
|
|
|
{{d-button action="cancel" class="btn-danger" icon="times" label="admin.user_fields.cancel"}}
|
|
|
|
{{/admin-form-row}}
|
2015-07-11 00:28:56 +08:00
|
|
|
{{else}}
|
|
|
|
<div class="row">
|
2015-07-31 02:52:53 +08:00
|
|
|
<div class='form-display'>
|
|
|
|
<strong>{{userField.name}}</strong>
|
|
|
|
<br/>
|
|
|
|
{{{userField.description}}}
|
|
|
|
</div>
|
2015-07-11 00:28:56 +08:00
|
|
|
<div class='form-display'>{{fieldName}}</div>
|
|
|
|
<div class='form-element controls'>
|
|
|
|
{{d-button action="edit" class="btn-default" icon="pencil" label="admin.user_fields.edit"}}
|
|
|
|
{{d-button action="destroy" class="btn-danger" icon="trash-o" label="admin.user_fields.delete"}}
|
2015-07-31 02:52:53 +08:00
|
|
|
{{d-button action="moveUp" icon="arrow-up" disabled=cantMoveUp}}
|
|
|
|
{{d-button action="moveDown" icon="arrow-down" disabled=cantMoveDown}}
|
2015-07-11 00:28:56 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">{{flags}}</div>
|
|
|
|
{{/if}}
|
|
|
|
<div class='clearfix'></div>
|