A while ago I needed a loop like "for(int i=0; i<20; i++)" within a
Django template. Since the builtin for-loop only iterates over lists
and since there was no appropriate template filter, I created a custom
one.

To me it seems as if this technique isn't well known to many users as
you can see here:
http://groups.google.de/group/django-users/browse_thread/thread/4fb98094e9ac8d6b/d4469824bcc86c9f?lnk=gst&q=for+loop#d4469824bcc86c9f

However, EricHsu already pointed at a valid solution here:
http://groups.google.de/group/django-users/browse_thread/thread/be217d63741ee8b3/c556754f978694c4?lnk=gst&q=for+loop+template+range1#c556754f978694c4

I decided to elaborate on this a bit and wrote a styp by step tutorial
about it: 
http://martinbrochhaus.de/2009/04/extending-the-for-loop-in-django-templates/

Maybe this might help someone searching for "for loop django template"
in the future :)
If there is a more elegant way to solve this, just tell me. I'm always
eager to learn more!

Best regards,
Martin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to