Sha256: 4b4f22ec723b22b66f9b16378ff1fdc7bf29af024b6075a588fa6ecd79a50865
Contents?: true
Size: 1014 Bytes
Versions: 11
Compression:
Stored size: 1014 Bytes
Contents
<%== view_title('Running jobs', hr: true) %> <% if @jobs.empty? && params.current_page <= 1 %> <%== partial 'jobs/no_jobs' %> <% elsif @jobs.empty? %> <%== partial 'shared/no_paginated_data' %> <% else %> <div class="container"> <div class="row mb-5"> <div class="col-sm-12"> <table class="processes bg-white table table-hover table-bordered table-striped mb-0 align-middle"> <thead> <tr class="align-middle"> <th>Process</th> <th>Topic</th> <th>Consumer</th> <th>Type</th> <th>Messages</th> <th>First offset</th> <th>Last offset</th> <th>Committed offset</th> <th>Started at</th> </tr> </thead> <tbody> <%== each_partial( @jobs, 'jobs/job' ) %> </tbody> </table> </div> </div> </div> <% end %>
Version data entries
11 entries across 11 versions & 1 rubygems