Sha256: 636304ccb3489bd2530e0ecbc7737d8c05f9595973ac66d3c84dbe1231d64650

Contents?: true

Size: 793 Bytes

Versions: 7

Compression:

Stored size: 793 Bytes

Contents

<h1><%= module_name_formatted.pluralize.camelize %></h1>

<table>
  <thead>
    <tr><%attributes.each do |attribute|%>
        <%-attribute_args = attribute.split(":")-%>
        <th><%=attribute_args[0].humanize.titlecase%></th> <%end%>
    </tr>
  </thead>
  <tbody>
    <%% @<%=module_name_formatted%>.each do |<%=module_name_formatted.singularize%>| %>
      <tr>
        <%-attributes.each do |attribute|-%>
        <%-attribute_args = attribute.split(":")-%>
        <td><%%= <%=module_name_formatted.singularize%>.<%=attribute_args[0]%> %></td>
        <%-end-%>
        <td><%%= link_to 'Details', <%=module_name_formatted.singularize%>_path(<%=module_name_formatted.singularize%>) %></td>
      </tr>
    <%% end %>
  </tbody>
</table>
<%%=will_paginate @<%=module_name_formatted%>%>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tb_core-1.2.1 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.2.0 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.1.10 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.1.9 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.1.8 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.1.7 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.1.6 lib/generators/spud/templates/views/frontend/index.html.erb