2018-08-25 13:26:17 +02:00
|
|
|
- content_for :header_tags do
|
2020-11-06 11:56:31 +01:00
|
|
|
= javascript_pack_tag 'admin', async: true, crossorigin: 'anonymous'
|
2018-08-25 13:26:17 +02:00
|
|
|
|
2017-04-03 18:55:06 +02:00
|
|
|
- content_for :page_title do
|
2017-04-16 19:37:01 +02:00
|
|
|
= t('.title')
|
2017-04-03 18:55:06 +02:00
|
|
|
|
|
|
|
= simple_form_for @domain_block, url: admin_domain_blocks_path do |f|
|
|
|
|
= render 'shared/error_messages', object: @domain_block
|
|
|
|
|
2018-09-18 16:45:58 +02: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 18:55:06 +02:00
|
|
|
|
2018-09-18 16:45:58 +02: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 18:55:06 +02:00
|
|
|
|
2018-09-18 16:45:58 +02: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 12:51:30 +02:00
|
|
|
|
2018-10-20 08:02:44 +02: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 08:30:41 +01: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 20:20:23 +02:00
|
|
|
.field-group
|
2022-03-09 08:52:32 +01: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 20:20:23 +02:00
|
|
|
|
|
|
|
.field-group
|
2022-03-09 08:52:32 +01: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 20:20:23 +02:00
|
|
|
|
2017-04-03 18:55:06 +02:00
|
|
|
.actions
|
2017-04-16 19:37:01 +02:00
|
|
|
= f.button :button, t('.create'), type: :submit
|