Sha256: 91fee90f720526386cbdb2f96b977688750dac0062489462ac3c81d4d21e31d3
Contents?: true
Size: 1.09 KB
Versions: 41
Compression:
Stored size: 1.09 KB
Contents
<h1>Listing execution plans</h1> <form action="<%= url %>" method="GET"> <%= filter_checkbox(:state, Dynflow::ExecutionPlan.states.map(&:to_s)) if supported_filter?(:state) %> <input type="submit" value="Filter"/> </form> <table class="table"> <thead> <tr> <th><%= order_link(:id, "Id") %></th> <th><%= order_link(:label, "Label") %></th> <th><%= order_link(:state, "State") %></th> <th><%= order_link(:result, "Result") %></th> <th><%= order_link(:started_at, "Started at") %></th> <th></th> </tr> </thead> <% @plans.each do |plan| %> <tr> <td><%= h(plan.id) %></td> <td><%= h(plan.label || (plan.root_plan_step && plan.root_plan_step.action_class.name)) %></td> <th><%= h(plan.state) %></th> <th><%= h(plan.result) %></th> <th><%= h(plan.started_at) %></th> <td><a href="<%= h(url("/#{plan.id}")) %>">Show</a></td> </tr> <% end %> </table> <% if paginate? %> <ul class="pagination"> <li><a href="<%= paginated_url(-1) %>">« Prev</a></li> <li><a href="<%= paginated_url(+1) %>">Next »</a></li> </ul> <% end %>
Version data entries
41 entries across 41 versions & 1 rubygems