Re: List of default Django tags that are "mid-block" like else

2014-02-15 Thread Ram Rachum
Thanks! On Fri, Feb 14, 2014 at 4:27 PM, Tom Evans wrote: > On Fri, Feb 14, 2014 at 1:08 PM, Ram Rachum wrote: > > Thanks! > > > > But empty and the various forloop don't concern me because they're {{ }} > > rather than {% %}, they don't start a

Re: List of default Django tags that are "mid-block" like else

2014-02-14 Thread Tom Evans
On Fri, Feb 14, 2014 at 1:08 PM, Ram Rachum wrote: > Thanks! > > But empty and the various forloop don't concern me because they're {{ }} > rather than {% %}, they don't start a block. > > Anything else? > If you are truly interested, look at the source for

Re: List of default Django tags that are "mid-block" like else

2014-02-14 Thread Ram Rachum
Thanks! But empty and the various forloop don't concern me because they're {{ }} rather than {% %}, they don't start a block. Anything else? On Fri, Feb 14, 2014 at 12:19 AM, C. Kirby wrote: > Not sure if this is what you mean, but: > > for > --empty >

Re: List of default Django tags that are "mid-block" like else

2014-02-13 Thread C. Kirby
Not sure if this is what you mean, but: for --empty --forloop.counter/first/last/etc -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

List of default Django tags that are "mid-block" like else

2014-02-13 Thread cool-RR
Hi guys, Can someone please give me a list of default Django template tags that have "mid-block" behavior like `else`? I mean tags where instead of simply having a start tag and an end tag, you have an optional tag in the middle that divides the whole thing to blocks. I can think of: if