On Mon, 02 Apr 2007 10:53:39 -0400, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
>
> Hi guys!
>
> I want to be able to use with as:
>
> {% with some.complex.variable as var and some.another.variable as
> other %}
> {{ var }}<br>
> {{ other }}<br>
> {% endwith %}
>
> I saw some discussion about this sometime ago but I could not find the
> thread. Now it is not possible to use the "and" as I want, is this a
> design decision or do you accept patches?
>
If I recall correstly that was a design decision as you can always nest
with tags:
{% with some.complex.variable as var %}
{% with some.another.variable as other %}
{{ var }}<br>
{{ other }}<br>
{% endwith %}
{% endwith %}
--
Waylan Limberg
[EMAIL PROTECTED]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---