summaryrefslogtreecommitdiff
path: root/lib/generators/nifty/scaffold/templates/views/haml/show.html.haml
blob: 3d01340050e6f54bf9d145da92f15c89db64ab78 (plain)
1
2
3
4
5
6
7
8
9
- title t("<%= plural_name %>.show.page_title")

<%- for attribute in model_attributes -%>
%p
  %strong= t('<%= plural_name %>.show.<%= attribute.name %>') + ":"
  = @<%= instance_name %>.<%= attribute.name %>
<%- end -%>

= render :partial => 'shared/show_edit_destroy_part', :locals => { :child => @<%= instance_name %> }