logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

new.html.haml (697B)


  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