2018-08-25 11:26:17 +00:00
|
|
|
- content_for :header_tags do
|
2020-11-06 10:56:31 +00:00
|
|
|
= javascript_pack_tag 'admin', async: true, crossorigin: 'anonymous'
|
2018-08-25 11:26:17 +00:00
|
|
|
|
2017-04-03 16:55:06 +00:00
|
|
|
- content_for :page_title do
|
2017-04-16 17:37:01 +00:00
|
|
|
= t('.title')
|
2017-04-03 16:55:06 +00:00
|
|
|
|
|
|
|
= simple_form_for @domain_block, url: admin_domain_blocks_path do |f|
|
|
|
|
= render 'shared/error_messages', object: @domain_block
|
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
.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('.hint'), required: true
|
2017-04-03 16:55:06 +00:00
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
.fields-row__column.fields-row__column-6.fields-group
|
|
|
|
= f.input :severity, collection: DomainBlock.severities.keys, wrapper: :with_label, include_blank: false, label_method: lambda { |type| t(".severity.#{type}") }, hint: t('.severity.desc_html')
|
2017-04-03 16:55:06 +00:00
|
|
|
|
2018-09-18 14:45:58 +00: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')
|
2017-04-16 10:51:30 +00:00
|
|
|
|
2018-10-20 06:02:44 +00:00
|
|
|
.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 07:30:41 +00: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-07 18:20:23 +00:00
|
|
|
.field-group
|
2022-03-09 07:52:32 +00: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-07 18:20:23 +00:00
|
|
|
|
|
|
|
.field-group
|
2022-03-09 07:52:32 +00: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-07 18:20:23 +00:00
|
|
|
|
2017-04-03 16:55:06 +00:00
|
|
|
.actions
|
2017-04-16 17:37:01 +00:00
|
|
|
= f.button :button, t('.create'), type: :submit
|