Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.27 KB | None | 0 0
  1. <% if current user %>
  2. <% @user_favorites = current_user.fav_photos %>
  3. <% @photos.each do |photo| %>
  4.   <li>
  5.     <%= link_to photo.name, photo_path(photo) %>
  6.     <% if @user_favorites.include?(photo) %>
  7.         <%= 'is favorite' %>
  8.     <% end %>
  9.   </li>
  10. <% end %>
  11. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement