aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/erb/scaffold/templates/show.html.erb
blob: 25567957bed6b62a1a5c4aa3743e3dccd15949de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<% for attribute in attributes -%>
<p>
  <b><%= attribute.human_name %>:</b>
  <%%=h @<%= singular_name %>.<%= attribute.name %> %>
</p>

<% end -%>

<%%= link_to 'Edit', edit_<%= singular_name %>_path(@<%= singular_name %>) %> |
<%%= link_to 'Back', <%= plural_name %>_path %>