Sha256: 3597c25414cbee6e05f35cafa11a5b3ebbdbf54e0558611c213efafee427af7d
Contents?: true
Size: 830 Bytes
Versions: 8
Compression:
Stored size: 830 Bytes
Contents
<ul class="breadcrumb"> <li><%= link_to 'back', :back %></li> </ul> <div class="page-header"> <h1>Table lists</h1> <%= link_to 'combine', combine_report_list_path(@report_list) %> </div> <table class="table table-striped"> <thead> <tr> <th>ID</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @table_lists.each do |table_list| %> <tr> <td><%= table_list.id %></td> <td><%= link_to 'Download Csv', report_list_table_list_path(@report_list, table_list, format: 'csv') %></td> <td><%= link_to 'Download Pdf', report_list_table_list_path(@report_list, table_list, format: 'pdf') %></td> <td><%= link_to 'destroy', report_list_table_list_path(@report_list, table_list), method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table>
Version data entries
8 entries across 4 versions & 1 rubygems