Sha256: a302b3d346a7b57b6dfcbf6025525fd222feba9fe3101a8b5747338d4cfe9b55
Contents?: true
Size: 804 Bytes
Versions: 10
Compression:
Stored size: 804 Bytes
Contents
<h1>Listing reports</h1> <table> <tr> <th>Name</th> <th>Description</th> <th>Title</th> <th>Group</th> <th>Direct</th> <th>Views</th> <th>Target</th> <th></th> <th></th> <th></th> </tr> <% @reports.each do |report| %> <tr> <td><%= report.name %></td> <td><%= report.description %></td> <td><%= report.title %></td> <td><%= report.group %></td> <td><%= report.direct %></td> <td><%= report.views %></td> <td><%= report.target %></td> <td><%= meta_report_link(report, 'Show') %></td> <td><%= link_to 'Edit', edit_report_path(report) %></td> <td><%= link_to 'Destroy', report, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Report', new_report_path %>
Version data entries
10 entries across 7 versions & 1 rubygems