<%= form_for(scenario, url: scenario_path(scenario), method: :delete) do |f| %>

<% if @scenario && @scenario == scenario %> How do you want to delete this Scenario? <% else %> How do you want to delete the Scenario '<%= scenario.name %>'? <% end %>

<%= label_tag do %> <%= radio_button_tag :mode, '', true %>

Scenario only

Only delete the Scenerio, keep the Agents. <% end %>
<%= label_tag do %> <%= radio_button_tag :mode, :unique_agents %>

Scenario and unique Agents

Also deletes Agents that are used in this Scenario only. <% end %>
<%= label_tag do %> <%= radio_button_tag :mode, :all_agents %>

Scenario and all included Agents

Deletes Scenario and all included Agents, even if they are used in different Scenarios. <% end %>
<%= f.button 'Abort', class: 'btn btn-default', 'data-dismiss' => 'modal' %> <%= f.submit 'Delete', class: 'btn btn-danger' %>
<% end %>