Sha256: ee99685619360eefd4939631e52476f47273298d5010d98de48fa185310757b3

Contents?: true

Size: 962 Bytes

Versions: 13

Compression:

Stored size: 962 Bytes

Contents

<h1>Listing <%= @name_plural.humanize.titlecase %></h1>

<table>
  <tr>
<% 
unless showable_columns.empty? 
  showable_columns.each do |col|
-%>
    <th><%= col.column_name.humanize %></th>
<% 
  end
else
-%>
    <th>&nbsp;</th>
<% 
end
-%>
  </tr>

<%% for <%= @name_singular %> in @<%= @name_plural %> %>
  <tr>
<%
unless showable_columns.empty? 
  showable_columns.each do |col| -%>
    <td><%%= <%= @name_singular %>.<%= col.column_name %> %></td>
<%
  end
else
-%>
    <td>&nbsp;</td>
<% end -%>
    <td><%%= link_to("Show", <%= @name_plural %>_show_url(:id => <%= @name_singular %>)) %></td>
    <td><%%= link_to("Edit", <%= @name_plural %>_edit_url(:id => <%= @name_singular %>)) %></td>
    <td><%%= link_to("Delete", <%= @name_plural %>_delete_url(:id => <%= @name_singular %>), :method => :delete, :confirm => "Are you sure?") %></td>
  </tr>
<%% end %>
</table>

<br />

<%%= link_to("New <%= @name_singular_camel %>", <%= @name_plural %>_new_url) %>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
mack-orm-0.7.0 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.7.1 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.7.1.1 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.0.101 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.0.2 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.0.3 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.3 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.7.0.1 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.0 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.0.1 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.1 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.2 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template
mack-orm-0.8.3.1 lib/mack-orm/scaffold_generator/templates/app/views/index.html.erb.template