Sha256: 3511504bf3f91fd96e1b483d51d857617e09ae42405f28016403503ef0ae746b
Contents?: true
Size: 1.11 KB
Versions: 15
Compression:
Stored size: 1.11 KB
Contents
<div class="page-header"> <%%= link_to new_<%= singular_table_name %>_path, :class => 'btn btn-primary' do %> <span class="glyphicon glyphicon-plus"></span> New <%= human_name %> <%% end %> <h1>Listing <%= plural_table_name %></h1> </div> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover"> <thead> <tr> <% attributes.each do |attribute| -%> <th><%= attribute.human_name %></th> <% end -%> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <%%= content_tag_for(:tr, @<%= plural_table_name %>) do |<%= singular_table_name %>| %> <% attributes.each do |attribute| -%> <td><%%= <%= singular_table_name %>.<%= attribute.name %> %></td> <% end -%> <td><%%= link_to 'Show', <%= singular_table_name %> %></td> <td><%%= link_to 'Edit', edit_<%= singular_table_name %>_path(<%= singular_table_name %>) %></td> <td><%%= link_to 'Destroy', <%= singular_table_name %>, method: :delete, data: { confirm: 'Are you sure?' } %></td> <%% end %> </tbody> </table> </div>
Version data entries
15 entries across 15 versions & 3 rubygems