Sha256: 8d7a2e6e17a783a74c76ee5ce45b90d5180ad5058a6b318e7879616d1f9c2f3d

Contents?: true

Size: 946 Bytes

Versions: 5

Compression:

Stored size: 946 Bytes

Contents

= within_admin_layout(title: "Audits") do

  table.audits
    thead
      tr
        th.col-width-small
        th.col-width-medium Name
        th Materialized view name
        th Schedule
        th.col-width-date-time Updated on
        th.col-width-date-time Data last refreshed
        th.col-width-small
    tbody
      - audits.each do |audit|
        tr
          td
            = link_to("View", reporting_audit_path(audit))
            = pipe_separator
            = link_to("Edit", edit_reporting_audit_path(audit))
          td= audit.name
          td= audit.materialized_view_name
          td= audit.refresh_schedule
          td= l(audit.updated_at)
          td= l(audit.refreshed_at)
          td= link_to("Refresh Data",
                      reporting_audit_refreshments_path(audit_id: audit.id),
                      remote: true,
                      method: :post,
                      class: "button compact warning")

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta8 app/views/renalware/reporting/audits/index.html.slim
renalware-core-2.0.0.pre.beta7 app/views/renalware/reporting/audits/index.html.slim
renalware-core-2.0.0.pre.beta6 app/views/renalware/reporting/audits/index.html.slim
renalware-core-2.0.0.pre.beta5 app/views/renalware/reporting/audits/index.html.slim
renalware-core-2.0.0.pre.beta4 app/views/renalware/reporting/audits/index.html.slim