2019-08-08 04:20:23 +10:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('admin.domain_blocks.edit')
|
|
|
|
|
|
|
|
= simple_form_for @domain_block, url: admin_domain_block_path(@domain_block), method: :put do |f|
|
|
|
|
= render 'shared/error_messages', object: @domain_block
|
|
|
|
|
|
|
|
.fields-row
|
|
|
|
.fields-row__column.fields-row__column-6.fields-group
|
|
|
|
= f.input :domain, wrapper: :with_label, label: t('admin.domain_blocks.domain'), hint: t('admin.domain_blocks.new.hint'), required: true, readonly: true, disabled: true
|
|
|
|
|
|
|
|
.fields-row__column.fields-row__column-6.fields-group
|
2023-07-17 23:07:29 +10:00
|
|
|
= f.input :severity, collection: DomainBlock.severities.keys, wrapper: :with_label, include_blank: false, label_method: ->(type) { t("admin.domain_blocks.new.severity.#{type}") }, hint: t('admin.domain_blocks.new.severity.desc_html')
|
2019-08-08 04:20:23 +10:00
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :reject_media, as: :boolean, wrapper: :with_label, label: I18n.t('admin.domain_blocks.reject_media'), hint: I18n.t('admin.domain_blocks.reject_media_hint')
|
|
|
|
|
|
|
|
.fields-group
|
|
|
|
= f.input :reject_reports, as: :boolean, wrapper: :with_label, label: I18n.t('admin.domain_blocks.reject_reports'), hint: I18n.t('admin.domain_blocks.reject_reports_hint')
|
|
|
|
|
2020-12-18 18:30:41 +11:00
|
|
|
.fields-group
|
|
|
|
= f.input :obfuscate, as: :boolean, wrapper: :with_label, label: I18n.t('admin.domain_blocks.obfuscate'), hint: I18n.t('admin.domain_blocks.obfuscate_hint')
|
|
|
|
|
2019-08-08 04:20:23 +10:00
|
|
|
.field-group
|
2022-03-09 18:52:32 +11:00
|
|
|
= f.input :private_comment, wrapper: :with_label, label: I18n.t('admin.domain_blocks.private_comment'), hint: t('admin.domain_blocks.private_comment_hint'), as: :string
|
2019-08-08 04:20:23 +10:00
|
|
|
|
|
|
|
.field-group
|
2022-03-09 18:52:32 +11:00
|
|
|
= f.input :public_comment, wrapper: :with_label, label: I18n.t('admin.domain_blocks.public_comment'), hint: t('admin.domain_blocks.public_comment_hint'), as: :string
|
2019-08-08 04:20:23 +10:00
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|