Sha256: c754c3fee31ce2fcdfcbc8b76cccc5303bf437683539f327b79b76dd9bd457e9

Contents?: true

Size: 911 Bytes

Versions: 3

Compression:

Stored size: 911 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>Completion</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.finished_job_count %>/<%= workflow.job_count %></td>
        </tr>
      <% end%>
    </tbody>
  </table>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sidekiq-hierarchy-2.1.0 web/views/_workflow_table.erb
sidekiq-hierarchy-2.0.1 web/views/_workflow_table.erb
sidekiq-hierarchy-2.0.0 web/views/_workflow_table.erb