闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
697 B

  1. - content_for :page_title do
  2. = t('.title')
  3. = simple_form_for @domain_block, url: admin_domain_blocks_path do |f|
  4. = render 'shared/error_messages', object: @domain_block
  5. %p.hint= t('.hint')
  6. = f.input :domain, placeholder: t('admin.domain_blocks.domain')
  7. = f.input :severity, collection: DomainBlock.severities.keys, wrapper: :with_label, include_blank: false, label_method: lambda { |type| t(".severity.#{type}") }
  8. %p.hint= t('.severity.desc_html')
  9. = 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')
  10. .actions
  11. = f.button :button, t('.create'), type: :submit