Guest User

Untitled

a guest
Feb 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <%
  2. @count = 0
  3. @size = 2
  4. %>
  5. <table>
  6. <% @gallery.media.each do |medium| %>
  7. <% if (@count % @size) == 0 %>
  8. <%= "<tr>" %>
  9. <% end %>
  10.  
  11. <td><%= image_tag (url_for_file_column medium, 'file'), :size => "100x100" %></td>
  12.  
  13. <% if @count % @size = 0 %>
  14. <%= "</tr>" %>
  15. <% end %>
  16. <% @count += 1 %>
  17. <% end %>
  18. </table>
Add Comment
Please, Sign In to add comment