2017-04-03 09:55:06 -07:00
|
|
|
- content_for :page_title do
|
2017-04-13 12:49:07 -07:00
|
|
|
= t('admin.domain_block.new.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
|
|
|
|
|
2017-04-13 12:49:07 -07:00
|
|
|
%p.hint= t('admin.domain_block.new.hint')
|
2017-04-03 09:55:06 -07:00
|
|
|
|
2017-04-13 12:49:07 -07:00
|
|
|
= 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}") }
|
2017-04-03 09:55:06 -07:00
|
|
|
|
2017-04-13 12:49:07 -07:00
|
|
|
%p.hint= t('admin.domain_block.new.severity.desc_html')
|
2017-04-16 03:51:30 -07:00
|
|
|
|
|
|
|
= 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')
|
|
|
|
|
2017-04-03 09:55:06 -07:00
|
|
|
.actions
|
2017-04-13 12:49:07 -07:00
|
|
|
= f.button :button, t('admin.domain_block.new.create'), type: :submit
|