Sha256: 1bc401838bc42e60694b8eaf74b6440169d88adbb5f2bb6ce13cec5fba802003

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

-# coding: utf-8
- jobs_by_status = $queue.jobs_by_status
- counts_all = $queue.jobs_count
- jobs = @paginate.subset

.btn-group.btn-group-xs.filters
  - klass = @filter.empty? ? "btn-info" : ""
  %a.btn.btn-default{href: dashboard_url(), class: klass}
    ALL (#{counts_all})

.btn-group.btn-group-xs.filters
  - jobs_by_status.each do |status, count|
    - klass = (status.to_s == @filter) ? "btn-info" : ""
    %a.btn.btn-default{href: dashboard_url(status), class: klass}
      #{status} (#{count})



.btn-group.btn-group-xs.paginator
  = @paginate.browser

%br
%br

.row
  #box-jobs.col-md-12

    %table.table.table-striped.table-hover.table-condensed#jobs

      %thead
        %tr
          %th ID
          %th label
          %th pool
          %th source
          %th method
          %th target
          %th queued
          %th.error status
          %th{"min-width" => 120} error
          %th.text-right filesize
          %th.text-right bitrate
          %th{title: "Worker ID"} W
          %th{title: "Priority"} P
          %th{title: "Runs count"} R

        - @jobs_queued.each do |pool, jobs|
          - unless jobs.empty?
            %tbody.jobs
              = render :dashboard_table, {jobs: jobs}

            %thead
              %tr
                %td{colspan: 14}
                  %br

        - unless jobs.empty?
          %tbody.jobs
            = render :dashboard_table, {jobs: jobs}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rest-ftp-daemon-0.306.4 lib/rest-ftp-daemon/views/dashboard_jobs.haml
rest-ftp-daemon-0.306.3 lib/rest-ftp-daemon/views/dashboard_jobs.haml
rest-ftp-daemon-0.306.1 lib/rest-ftp-daemon/views/dashboard_jobs.haml
rest-ftp-daemon-0.306.0 lib/rest-ftp-daemon/views/dashboard_jobs.haml