about summary refs log tree commit diff
path: root/app/views/admin/domain_blocks/new.html.haml
blob: 2b8b24e23357174968c21c99c816eaf30f4976a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- content_for :header_tags do
  = javascript_pack_tag 'admin', integrity: true, async: true, crossorigin: 'anonymous'

- content_for :page_title do
  = t('.title')

= simple_form_for @domain_block, url: admin_domain_blocks_path do |f|
  = render 'shared/error_messages', object: @domain_block

  %p.hint= t('.hint')

  = f.input :domain, placeholder: t('admin.domain_blocks.domain')
  = f.input :severity, collection: DomainBlock.severities.keys, wrapper: :with_label, include_blank: false, label_method: lambda { |type| t(".severity.#{type}") }

  %p.hint= t('.severity.desc_html')

  = 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')

  .actions
    = f.button :button, t('.create'), type: :submit