mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 19:33:39 +08:00
11067c73d0
One step closer to removing all `action` helper usage
23 lines
546 B
Handlebars
23 lines
546 B
Handlebars
<label>{{i18n "admin.logs.screened_ips.form.label"}}</label>
|
|
<TextField
|
|
@value={{this.ip_address}}
|
|
@disabled={{this.formSubmitted}}
|
|
@placeholderKey="admin.logs.screened_ips.form.ip_address"
|
|
@autocorrect="off"
|
|
@autocapitalize="off"
|
|
class="ip-address-input"
|
|
/>
|
|
|
|
<ComboBox
|
|
@content={{this.actionNames}}
|
|
@value={{this.actionName}}
|
|
@onChange={{fn (mut this.actionName)}}
|
|
/>
|
|
|
|
<DButton
|
|
@action={{this.submitForm}}
|
|
@disabled={{this.formSubmitted}}
|
|
@label="admin.logs.screened_ips.form.add"
|
|
type="submit"
|
|
class="btn-default"
|
|
/> |