Sha256: ae5ef9e335075feb63d7882f6ab3e5718374ca8785caaefdc1a9208e8621c0b3
Contents?: true
Size: 1.07 KB
Versions: 21
Compression:
Stored size: 1.07 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.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
21 entries across 21 versions & 1 rubygems