<% if @scenario_import.errors.any? %>

<%= pluralize(@scenario_import.errors.count, "error") %> prohibited this Scenario from being imported:

<% @scenario_import.errors.full_messages.each do |msg| %>

<%= msg %>

<% end %>
<% end %>
<%= form_for @scenario_import, :multipart => true do |f| %> <%= f.hidden_field :data %> <% if @scenario_import.step_one? %> <%= render 'step_one', :f => f %> <% elsif @scenario_import.step_two? %> <%= render 'step_two', :f => f %> <% end %> <% end %>
<%= link_to icon_tag('glyphicon-chevron-left') + ' Back'.html_safe, scenarios_path, class: "btn btn-default" %>