Here is my view:

<div>
  <ul>
  <%= @album.photos.each do |photo| %>
   <li><%= link_to(image_tag(photo.soure.url(:small)),photo.source.url(:medium)) %></li>
  <% end %>
 </ul> 
</div>

produces the right result except all the object ids (i.e. #<Photo:0xXXXXXX>#) get added right before the </ul> and display in the html. I'm guessing since each time the block gets executed it returns the Photo object and that's why its rendering all the #<Photo:0x>s but i don't know how to STOP this from happening.

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

It's because you have:

<%= @album.photos.each do |photo| %>

instead of:

<% @album.photos.each do |photo| %>
link|improve this answer
too easy. That answers a much too long question of mine, thanks! – user892583 Oct 24 '11 at 13:24
You're welcome. – Mischa Oct 24 '11 at 13:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.