Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 31st, 2012  |  syntax: None  |  size: 0.79 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to divide all objects into parts
  2. {% for image in gallery.images.all %}
  3.     <div id="image{{ image.id }}" class="frame">
  4.         <img src="{{ image.url_125x125 }}" alt="{{ image.name }}" />
  5.     </div>
  6. {% endfor %}
  7.        
  8. {% for image in gallery.images.all|slice:"5:" %}
  9.     <div id="image{{ image.id }}" class="frame">
  10.         <img src="{{ image.url_125x125 }}" alt="{{ image.name }}" />
  11.     </div>
  12. {% endfor %}
  13. {% for image in gallery.images.all|slice:"5:5" %}
  14.     <div id="image{{ image.id }}" class="frame">
  15.         <img src="{{ image.url_125x125 }}" alt="{{ image.name }}" />
  16.     </div>
  17. {% endfor %}
  18. {% for image in gallery.images.all|slice:"10:5" %}
  19.     <div id="image{{ image.id }}" class="frame">
  20.         <img src="{{ image.url_125x125 }}" alt="{{ image.name }}" />
  21.     </div>
  22. {% endfor %}
  23.  
  24. etc...