Sha256: ef4afa3a4895264c1052e41bbca0a9931f0e8d1614e6b86e9d591fc45c06a949

Contents?: true

Size: 1.1 KB

Versions: 19

Compression:

Stored size: 1.1 KB

Contents

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

<table class="table">
  <thead>
    <tr><%attributes.each do |attribute|%>
        <%-attribute_args = attribute.split(":")-%>
        <th><%=attribute_args[0].humanize.titlecase%></th> <%end%>
      <th>&nbsp;</th>
    </tr>
  </thead>
  <tbody>
    <%% cache(cache_key_for_spud_collection(@<%=module_name_formatted%>)) do %>
      <%% @<%=module_name_formatted%>.each do |<%=module_name_formatted.singularize%>| %>
        <%% cache(<%=module_name_formatted.singularize%>) do %>
          <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 %>
      <%% end %>
    <%% end %>
  </tbody>
</table>
<%%= will_paginate @<%=module_name_formatted%> %>

<script>
  $(document).ready(app.<%= module_name_formatted %>.index);
</script>

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
tb_core-1.4.3.1 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.4.3 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.4.2 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.4.1 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.4.0.1 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.4.beta2 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.4.beta1 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.10 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.9 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.7 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.6 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.5 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.4 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.3 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.2 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.1 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.0 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.0.beta2 lib/generators/spud/templates/views/frontend/index.html.erb
tb_core-1.3.0.beta1 lib/generators/spud/templates/views/frontend/index.html.erb