Sha256: 8da28786d9f1b437e0df6b0343ae768f3cd7f8fe09fe70bfa667938d1910e2e4

Contents?: true

Size: 839 Bytes

Versions: 5

Compression:

Stored size: 839 Bytes

Contents

= content_for :nav_title do
  | Stale Controller Actions
- if @stale_controller_actions.present?
  = content_for :nav_links do
    .buttons
      = authz_link_to 'Destroy all', bulk_controller_actions_destroy_path(destroy_all: true), { class: 'button is-danger', method: :delete }, skip_scoping:  true

section.section
  .container
    - if @stale_controller_actions.blank?
      .columns.is-centered
        .column.is-one-third
          p.is-size-4.has-text-centered Everything up to date!
    - else
      .card
        table.table.is-fullwidth
          thead
            tr
              th Controller Name
              th Action Name
          tbody
            - @stale_controller_actions.each do |controller_action|
              tr
                td = controller_action.controller
                td = controller_action.action

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
authz-0.0.5 app/views/authz/stale_controller_actions/index.html.slim
authz-0.0.4 app/views/authz/stale_controller_actions/index.html.slim
authz-0.0.3 app/views/authz/stale_controller_actions/index.html.slim
authz-0.0.2 app/views/authz/stale_controller_actions/index.html.slim
authz-0.0.1 app/views/authz/stale_controller_actions/index.html.slim