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