Sha256: c29b0b9d5e66b50727db0fadc17bdb515c4d4a662c6d56cb851606fabf67b622
Contents?: true
Size: 1.94 KB
Versions: 2
Compression:
Stored size: 1.94 KB
Contents
<%%- model_class = <%= resource_name.classify %> -%> <div class="page-header"> <h1><%%=t '.title', default: model_class.model_name.human.pluralize.titleize %></h1> </div> <table class="table table-striped"> <thead> <tr> <th><%%= model_class.human_attribute_name(:id) %></th> <%- columns.each do |column| -%> <th><%%= model_class.human_attribute_name(:<%= column.name %>) %></th> <%- end -%> <th><%%= model_class.human_attribute_name(:created_at) %></th> <th><%%=t '.actions', default: t("helpers.actions") %></th> </tr> </thead> <tbody> <%% @<%= plural_resource_name %>.each do |<%= resource_name %>| %> <tr> <td><%%= <%= resource_name %>.id %></td> <%- columns.each do |column| -%> <td><%%= <%= resource_name %>.<%= column.name %> %></td> <%- end -%> <td><%%=l <%= resource_name %>.created_at, format: :long %></td> <td> <%%= link_to <%= singular_controller_routing_path %>_path(<%= resource_name %>), class: 'btn btn-xs', title: "#{ t('.show', default: t('helpers.links.show')) }" do %> <%%= glyph 'info-sign' %> <%%- end -%> <%%= link_to edit_<%= singular_controller_routing_path %>_path(<%= resource_name %>), class: 'btn btn-xs', title: "#{ t('.edit', default: t('helpers.links.edit')) }" do %> <%%= glyph 'pencil' %> <%%- end -%> <%%= link_to <%= singular_controller_routing_path %>_path(<%= resource_name %>), method: :delete, data: { confirm: t('.confirm', default: t("helpers.links.confirm", default: 'Are you sure?')) }, class: 'btn btn-xs', title: "#{ t('.destroy', default: t('helpers.links.destroy')) }" do %> <%%= glyph 'remove' %> <%%- end -%> </td> </tr> <%% end %> </tbody> </table> <%%= link_to t('.new', default: t("helpers.links.new")), new_<%= singular_controller_routing_path %>_path, class: 'btn btn-primary' %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bootstrap-sass-extras-0.1.0 | lib/generators/bootstrap/themed/templates/index.html.erb |
bootstrap-sass-extras-0.0.7 | lib/generators/bootstrap/themed/templates/index.html.erb |