projects
/
cs356-p2-videostore.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add the capability to return checked out items
[cs356-p2-videostore.git]
/
app
/
views
/
coitem
/
show.rhtml
1
<% for column in Coitem.content_columns %>
2
<p>
3
<b><%= column.human_name %>:</b> <%=h @coitem.send(column.name) %>
4
</p>
5
<% end %>
6
7
<%= link_to 'Edit', :action => 'edit', :id => @coitem %> |
8
<%= link_to 'Back', :action => 'list' %>