Hi Chris,

> Just out of curiosity, is there a reason why the templating constructs
> can't evaluate arbitrary expressions? It seems terribly awkward to me
> that {% if %} can only evaluate variable names, while you need the
> separate operator {% ifequals %} to test for equality, and for some
> reason it doesn't support {% else %}.

First, {% else %} is supported, so your example can be written as:

{% ifequal a 1 %}blah{% else %}foo{% endifequal %}

If you want some more advanced tags in your templates, you might want to 
look at the template-utils: http://code.google.com/p/django-template-utils/. 
I think some of its features, like getting objects from a model, do not 
belong in a template language, but the {% if_greater %} tag can be very 
useful. I use it when I want to display a number below a certain value in 
red for example.

- Sander


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to