<% if @stage.hosts.empty? %>

No hosts for this stage. A host is a physical host that this stage should deploy to. Please add a host.

<% else %> <% for role in @stage.roles %> <% end %>
Host Role SSH Port Attributes Status
<%= link_to h(role.host.name), host_path(role.host) %> <%=h role.name %> <%=h role.ssh_port || 'default' %> <%=h role.role_attribute_hash.inspect unless role.role_attribute_hash.blank? %> <%= role.status_in_html %> <%= link_to 'Edit', edit_project_stage_role_path(@project, @stage, role) %> <%= link_to 'Delete', project_stage_role_path(@project, @stage, role), :confirm => 'Are you sure?', :method => :delete %>
<% end %>