Hi here guys. I have an odd problem with Django. I have a set of objects that Im looping through in a template as you would normally. However, I need to group the items in threes. The layout of the page goes like this:
Painting 1 - Painting 2 - Painting 3
D E S C R I P T I O N 1
D E S C R I P T I O N 2
D E S C R I P T I O N 3
Painting 4 - Painting - 5 Painting 6
D E S C R I P T I O N 4
D E S C R I P T I O N 5
D E S C R I P T I O N 6
etc etc
I cant quite figure out the best set of Django tags to do this really. It seems somewhat tricky. the {% cycle %} statement didnt quite help.
Unless of course, I do some java script hacking of some kind and leave Django out of this? There must be someway of saying "Put all the description divs after one another" or similar. Not sure how best to play with this ordering. Any thoughts? Cheers.