Displaying 1 result from an estimated 1 matches for "reviewfield".
2006 Jan 25
1
url_for_file_column in parent model''s view
...out how to view the images in simple
display view of the parent model (books).
I am not sure about the syntax of the url_for_file_column helper.
Here is what I have so far:
<% for image in @book.images %>
<label for="image_name">Image:</label>
<div class="reviewfield"><% url_for_file_column image, image.name,
"thumb" %> </div><br />
<label for="image_caption">Caption</label>
<div class="reviewfield"><%= image.caption %></div><br />
<% end %>
Which produ...