Re: Ticket #5172 discussion

2007-09-25 Thread vfoley
Most likely. I implemented it just to get more insight into Django's internals, but I'm -0 on this ticket. I have never needed anything more than my range0 and range1 filters (10|range0 => range(10); 10| range1 => range(1, 11)) On Sep 25, 5:43 am, "Andrew Durdin" <[EMAIL PROTECTED]> wrote: > On

Re: Ticket #5172 discussion

2007-09-25 Thread Andrew Durdin
On 9/25/07, vfoley <[EMAIL PROTECTED]> wrote: > > SmileyChris added a ticket to propose extending the for loop tag to > support numerical looping. I posted a patch that adds such a > capability and includes a few tests. Documentation is still lacking. > Let me know what you think, here are some

Ticket #5172 discussion

2007-09-24 Thread vfoley
SmileyChris added a ticket to propose extending the for loop tag to support numerical looping. I posted a patch that adds such a capability and includes a few tests. Documentation is still lacking. Let me know what you think, here are some code examples: {% for i 1 to 5 %} {{ i }} {% endfor