Sha256: efac5cb3194993f516c677d5582be921a78d9c6c2328c750b755049a7f8d4f38

Contents?: true

Size: 1.01 KB

Versions: 9

Compression:

Stored size: 1.01 KB

Contents

- title t('.title')
.card
  .card-body
    .table-responsive.text-nowrap
      %table.table.card-table.border.table-striped
        %thead
          %tr
            %th Name
            %th Last Run At
            %th Min
            %th Hour
            %th MDay
            %th Month
            %th WDay
            %th Enabled
            %th Actions
        %tbody.table-border-bottom-0
          - Cron::JobTab.each do |tab|
            %tr
              %td.name=tab.name.humanize
              %td= current_user.local_time(tab.last_run_at)
              %td=tab.min
              %td=tab.hour
              %td=tab.mday
              %td=tab.month
              %td=tab.wday
              %td
                - if tab.valid_environment?
                  = remix_icon('check', type: :fill)
              %td
                =dropdown_menu do
                  =edit_dropdown_item(tab, edit_cron_tab_path(tab))
                  - if tab.valid_environment?
                    =run_dropdown_item(tab, run_now_cron_tab_path(tab))

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
web47core-3.2.20 app/views/cron_tabs/index.html.haml
web47core-3.2.19 app/views/cron_tabs/index.html.haml
web47core-3.2.18 app/views/cron_tabs/index.html.haml
web47core-3.2.17 app/views/cron_tabs/index.html.haml
web47core-3.2.16 app/views/cron_tabs/index.html.haml
web47core-3.2.15 app/views/cron_tabs/index.html.haml
web47core-3.2.14 app/views/cron_tabs/index.html.haml
web47core-3.2.13 app/views/cron_tabs/index.html.haml
web47core-3.2.12 app/views/cron_tabs/index.html.haml