Sha256: bc91afd5ac8125719ca20fa4ad9b446abeb51dd8c83c8568cecab563a93bb9d6

Contents?: true

Size: 915 Bytes

Versions: 6

Compression:

Stored size: 915 Bytes

Contents

h1 Listing reports
= authz_link_to 'Create New Report', new_report_path, { class: 'button' }, skip_scoping: true

- cache [@reports, current_user.roles_cache_key]
  table
    thead
      tr
        th ID
        th User
        th Clearance
        th City
        th Title
        th Body
        th
        th
        th
    tbody
      - @reports.each do |report|
        - cache [report, current_user.roles_cache_key]
          tr
            td = report.id
            td = report.user.email
            td = report.clearance.try :name
            td = report.city.try :name
            td = report.title
            td = report.body.truncate(100)
            td = authz_link_to 'Show', report, using: report
            td = authz_link_to 'Edit', edit_report_path(report), using: report
            td = authz_link_to 'Destroy', report, { data: { confirm: 'Are you sure?' }, method: :delete }, using: report

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
authz-0.0.5 spec/dummy/app/views/reports/index.html.slim
authz-0.0.4 spec/dummy/app/views/reports/index.html.slim
authz-0.0.3 spec/dummy/app/views/reports/index.html.slim
authz-0.0.2 spec/dummy/app/views/reports/index.html.slim
authz-0.0.1 spec/dummy/app/views/reports/index.html.slim
authz-0.0.1.alpha5 spec/dummy/app/views/reports/index.html.slim