<%% title "<%= plural_name.titleize %>" %> <%- for attribute in model_attributes -%> <%- end -%> <%% for <%= instance_name %> in @<%= instances_name %> %> <%- for attribute in model_attributes -%> <%- end -%> <%- if action? :show -%> <%- end -%> <%- if action? :edit -%> <%- end -%> <%- if action? :destroy -%> <%- end -%> <%% end %>
<%= attribute.human_name.titleize %>
<%%= <%= instance_name %>.<%= attribute.name %> %><%%= link_to "Show", <%= item_path %> %><%%= link_to "Edit", <%= item_path :action => :edit %> %><%%= link_to "Destroy", <%= item_path %>, :confirm => 'Are you sure?', :method => :delete %>
<%- if action? :new -%>

<%%= link_to "New <%= singular_name.titleize %>", <%= item_path :action => :new %> %>

<%- end -%>