<% @step = 1 %>
<% @line_step = 0%>
<% agent.mission_agent_steps.order(:created_at => :asc).each do |step| %>
<% if @line_step == 0 %>
<% end %>
-
Step <%= @step %> <%= render 'mission_agent_step_status', :step => step %>
<%= step.description %>
<% if step.status == 'Waiting Validation'%>
Response: <%= step.proof %>
<%= link_to 'Invalidade', step_invalidate_check_path(step.id), :class => 'btn btn-danger btn-mini' %>
<%= link_to 'Validade', step_validate_check_path(step.id), :class => 'btn btn-success btn-mini', :style => 'margin-right: 5px;' %>
<% end %>
<% @step = @step + 1 %>
<% @line_step = @line_step + 1%>
<% if @line_step == 3 %>
<% @line_step = 0%>
<% end %>
<% end %>