mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 11:06:20 +08:00
26 lines
No EOL
649 B
Handlebars
Vendored
26 lines
No EOL
649 B
Handlebars
Vendored
<div class="field">{{i18n this.name}}</div>
|
|
<div class="value">
|
|
{{#if this.editing}}
|
|
<TextField
|
|
@value={{this.buffer}}
|
|
@autofocus="autofocus"
|
|
@autocomplete="off"
|
|
/>
|
|
{{else}}
|
|
<a href {{on "click" this.edit}} class="inline-editable-field">
|
|
<span>{{this.value}}</span>
|
|
</a>
|
|
{{/if}}
|
|
</div>
|
|
<div class="controls">
|
|
{{#if this.editing}}
|
|
<DButton
|
|
class="btn-default"
|
|
@action={{this.save}}
|
|
@label="admin.user_fields.save"
|
|
/>
|
|
<a href {{on "click" this.edit}}>{{i18n "cancel"}}</a>
|
|
{{else}}
|
|
<DButton class="btn-default" @action={{this.edit}} @icon="pencil" />
|
|
{{/if}}
|
|
</div> |