<%% title "<%= plural_name.titleize %>" %> <%- for attribute in attributes -%> <%- end -%> <%% for <%= singular_name %> in @<%= plural_name %> %> <%- for attribute in attributes -%> <%- end -%> <%- if action? :show -%> <%- end -%> <%- if action? :edit -%> <%- end -%> <%- if action? :destroy -%> <%- end -%> <%% end %>
<%= attribute.column.human_name.titleize %>
<%%=h <%= singular_name %>.<%= attribute.name %> %><%%= link_to "Show", <%= singular_name %> %><%%= link_to "Edit", edit_<%= singular_name %>_path(<%= singular_name %>) %><%%= link_to "Destroy", <%= singular_name %>, :confirm => 'Are you sure?', :method => :delete %>
<%- if action? :new -%>

<%%= link_to "New <%= singular_name.titleize %>", new_<%= singular_name %>_path %>

<%- end -%>