Sha256: 5cfac81f74404c3b1f805aa468d8193a43359e4b329eddd41031c082648b87cb

Contents?: true

Size: 673 Bytes

Versions: 3

Compression:

Stored size: 673 Bytes

Contents

header.row
  .span5
    h3 Recurring Jobs

- if @schedules.length > 0
  table class="table table-striped table-bordered table-white" style="width: 100%; margin: 0; table-layout:fixed;"
    thead
      th style="width: 50%" Worker
      th style="width: 20%" Queue
      th style="width: 20%" Next Run
      th style="width: 10%" Actions
    - @schedules.each do |worker, schedule|
      tr
        td
          = worker.name
        td= worker.get_sidekiq_options['queue']
        td
          == relative_time(schedule.next_occurrence(@time))
        td
          a href="#{root_path}sidetiq/#{worker.name}" Details
- else
  .alert.alert-success No recurring jobs found.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sidetiq-0.1.4 lib/sidetiq/views/sidetiq.slim
sidetiq-0.1.3 lib/sidetiq/views/sidetiq.slim
sidetiq-0.1.2 lib/sidetiq/views/sidetiq.slim