about summary refs log tree commit diff
path: root/app/views/admin/domain_blocks/new.html.haml
blob: 603faeb554b3b6a25ad4426ab758e1804675b0d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- content_for :page_title do
  = t('admin.domain_block.new.title')

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

  %p.hint= t('admin.domain_block.new.hint')

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

  %p.hint= t('admin.domain_block.new.severity.desc_html')

  = f.input :reject_media, as: :boolean, wrapper: :with_label, label: I18n.t('admin.domain_block.reject_media'), hint: I18n.t('admin.domain_block.reject_media_hint')

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