Guest User

Untitled

a guest
Feb 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <%
  2. count = 0
  3. size = 2
  4. %>
  5. <table>
  6. <% for medium in @gallery.media %>
  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