Sha256: 301d4e8cf9c880bc5865ae51231abb5489ce3c0c3d4bd2e2be5602256fac604b
Contents?: true
Size: 871 Bytes
Versions: 6
Compression:
Stored size: 871 Bytes
Contents
<div class="table_container"> <table class="table table-hover table-bordered table-striped table-white"> <thead> <tr> <th>Workflow ID</th> <th>Status</th> <th>Enqueued at</th> <th>Run at</th> <th>Completed at</th> <th>Failed at</th> <th>Jobs</th> </tr> </thead> <tbody> <% workflows.each do |workflow| %> <tr> <td> <a href="<%= workflow_url(workflow) %>"> <%= workflow.jid %> </a> </td> <td><%= workflow.status %></td> <td><%= workflow.enqueued_at %></td> <td><%= workflow.run_at %></td> <td><%= workflow.complete_at %></td> <td><%= workflow.failed_at %></td> <td><%= workflow.jobs.count %></td> </tr> <% end%> </tbody> </table> </div>
Version data entries
6 entries across 6 versions & 1 rubygems