Sha256: c946cb3b66f4afda9d1ccd55088a615ea7e33dab16940fa48ed267c3f55d183b
Contents?: true
Size: 1.06 KB
Versions: 22
Compression:
Stored size: 1.06 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(:action, "Action") %></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.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
22 entries across 22 versions & 1 rubygems