Mission: <%= @mission.title %>
Details: <%= @mission.description %>
Agent List
<% if @mission.mission_agents.length > 0 %>
<% @agent_number = 1 %>
<% @mission.mission_agents.each do |agent| %>
<% if agent.mission_agent_invites.last != nil %>
<% if agent.mission_agent_invites.last.status == 'accepted' %>
<% @status_label = 'label-success'%>
<% elsif agent.mission_agent_invites.last.status == 'denied' %>
<% @status_label = 'label-important'%>
<% else%>
<% @status_label = 'label-default'%>
<% end %>
<% if agent.mission_agent_steps.length == 0 %>
<% @agent_status = 'empty'%>
<% end %>
<% else %>
<% @status_label = 'label-important'%>
<% @agent_status = 'missing'%>
<% end %>
<% @step = 1 %>
<% agent.mission_agent_steps.each do |step| %>
-
Step <%= @step %>
<%= step.description %>
<% @step = @step + 1 %>
<% end %>
<% @agent_number = @agent_number + 1 %>
<% end %>
<% else %>
No agents were assigned for this mission! Please edit mission settings and add agents in the form.
<% end %>