projects
/
cs356-p2-videostore.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
9c906245cec4333a099ecda130360b2c20216322
[cs356-p2-videostore.git]
/
app
/
views
/
merchandise
/
show.rhtml
1
<% for column in Merchandise.content_columns %>
2
<p>
3
<b><%= column.human_name %>:</b> <%=h @merchandise.send(column.name) %>
4
</p>
5
<% end %>
6
7
<%= link_to 'Edit', :action => 'edit', :id => @merchandise %> |
8
<%= link_to 'Back', :action => 'list' %>