Sha256: 1fd4d430a58441eb8f531aec9ae7b2f4d20e3d2c489616324e94bd8e67100eeb
Contents?: true
Size: 1.38 KB
Versions: 5
Compression:
Stored size: 1.38 KB
Contents
<h3>Workflow <%= @workflow.jid %></h3> <%= erb sidekiq_hierarchy_template(:_workflow_progress_bar), locals: {workflow: @workflow} %> <div class="table_container"> <table class="table table-condensed table-white"> <thead> <tr> <th>Status</th> <th>Enqueued at</th> <th>Run at</th> <th>Completed at</th> <th>Failed at</th> </tr> </thead> <tbody> <tr> <td><%= @workflow.status %></td> <td><%= @workflow.enqueued_at %></td> <td><%= @workflow.run_at %></td> <td><%= @workflow.complete_at %></td> <td><%= @workflow.failed_at %></td> </tr> </tbody> </table> </div> <%= erb sidekiq_hierarchy_template(:_workflow_timings), locals: {workflow: @workflow} %> <h4>Job Tree</h4> <%= erb sidekiq_hierarchy_template(:_workflow_tree), locals: {root: @workflow.root} %> <h4>Jobs</h4> <%= erb sidekiq_hierarchy_template(:_job_table), locals: {jobs: @workflow.jobs} %> <% unless @workflow.running? %> <form action="<%= workflow_url(@workflow) %>" method="post"> <div style="margin:0;padding:0"> <input name="_method" type="hidden" value="delete" /> <input name="authenticity_token" type="hidden" value="<%= session[:csrf] %>"> </div> <button type="submit" class="btn btn-danger" onclick="return confirm('Are you sure? This is irreversible')">Delete</button> </form> <% end %>
Version data entries
5 entries across 5 versions & 1 rubygems