<% include!("header.html"); %>

inventoryDeployments

<% for project in projects.iter() { let deps = &deployments[&project.id]; %>

<%= project.name %>

    <% for deployment in deps.iter() { %>
  1. <% if deployment.active.unwrap() { %> star <% } else { %> cancel <% } %> <%= deployment.human_readable_strategy() %>
  2. <% } %>
<% } %> <% include!("footer.html"); %>