mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
38 lines
970 B
Handlebars
38 lines
970 B
Handlebars
<div class="permalink-form">
|
|
<div class="inline-form">
|
|
<label>{{i18n "admin.permalink.form.label"}}</label>
|
|
|
|
<TextField
|
|
@value={{this.url}}
|
|
@disabled={{this.formSubmitted}}
|
|
@placeholderKey="admin.permalink.url"
|
|
@autocorrect="off"
|
|
@autocapitalize="off"
|
|
class="permalink-url"
|
|
/>
|
|
|
|
<ComboBox
|
|
@content={{this.permalinkTypes}}
|
|
@value={{this.permalinkType}}
|
|
@onChange={{action (mut this.permalinkType)}}
|
|
class="permalink-type"
|
|
/>
|
|
|
|
<TextField
|
|
@value={{this.permalinkTypeValue}}
|
|
@disabled={{this.formSubmitted}}
|
|
@placeholderKey={{this.permalinkTypePlaceholder}}
|
|
@autocorrect="off"
|
|
@autocapitalize="off"
|
|
@keyDown={{this.submitFormOnEnter}}
|
|
class="permalink-destination"
|
|
/>
|
|
|
|
<DButton
|
|
@action={{this.onSubmit}}
|
|
@disabled={{this.formSubmitted}}
|
|
@label="admin.permalink.form.add"
|
|
class="permalink-add"
|
|
/>
|
|
</div>
|
|
</div> |