Sha256: baa458b2b48b9dbc7164d748c016f82c69dc3799fe2f59f5046b57fc643fab36

Contents?: true

Size: 443 Bytes

Versions: 5

Compression:

Stored size: 443 Bytes

Contents

h1 Listing reports

table
  thead
    tr
      th Title
      th Description
      th
      th
      th

  tbody
    - @reports.each do |report|
      tr
        td = report.title
        td = report.description
        td = link_to 'Show', report
        td = link_to 'Edit', edit_report_path(report)
        td = link_to 'Destroy', report, data: {:confirm => 'Are you sure?'}, :method => :delete

br

= link_to 'New Report', new_report_path

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
easy_reports-0.0.10 app/views/easy_reports/reports/index.html.slim
easy_reports-0.0.9 app/views/easy_reports/reports/index.html.slim
easy_reports-0.0.8 app/views/easy_reports/reports/index.html.slim
easy_reports-0.0.7 app/views/easy_reports/reports/index.html.slim
easy_reports-0.0.6 app/views/easy_reports/reports/index.html.slim