%= render DS::Dialog.new(reload_on_close: true) do |dialog| %> <% title = if @rule.name.present? "Confirm changes to \"#{@rule.name}\"" else "Confirm changes" end %> <% dialog.with_header(title: title) %> <% dialog.with_body do %>
You are about to apply this rule to <%= @rule.affected_resource_count %> <%= @rule.resource_type.pluralize %> that meet the specified rule criteria. Please confirm if you wish to proceed with this change.
<%= render DS::Button.new( text: "Confirm changes", href: apply_rule_path(@rule), method: :post, full_width: true, data: { turbo_frame: "_top" }) %> <% end %> <% end %>