Sha256: 758a26cbf0be180cc90eca4bb3b7440894a5c9f1f978628cef60f21c46f74af0
Contents?: true
Size: 1.11 KB
Versions: 6
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
6 entries across 6 versions & 3 rubygems