2017-04-16 10:51:30 +00:00
|
|
|
- content_for :page_title do
|
2017-04-16 17:37:01 +00:00
|
|
|
= t('admin.domain_blocks.show.title', domain: @domain_block.domain)
|
2017-04-16 10:51:30 +00:00
|
|
|
|
|
|
|
= simple_form_for @domain_block, url: admin_domain_block_path(@domain_block), method: :delete do |f|
|
|
|
|
|
2017-07-24 12:26:55 +00:00
|
|
|
- if (@domain_block.noop?)
|
|
|
|
= f.input :retroactive,
|
|
|
|
as: :hidden,
|
|
|
|
input_html: { :value => "0" }
|
|
|
|
- else
|
|
|
|
= f.input :retroactive,
|
|
|
|
as: :boolean,
|
|
|
|
wrapper: :with_label,
|
|
|
|
label: t(".retroactive.#{@domain_block.severity}"),
|
|
|
|
hint: t(:affected_accounts,
|
|
|
|
scope: [:admin, :domain_blocks, :show],
|
|
|
|
count: @domain_block.accounts_count)
|
2017-04-16 10:51:30 +00:00
|
|
|
|
|
|
|
.actions
|
2017-04-16 17:37:01 +00:00
|
|
|
= f.button :button, t('.undo'), type: :submit
|