>  {% for a in list %}
>         a.foo   a.bar
>  {% endfor %}

If you really need something to happen other than an empty string, you
can always use the "if" tag:

{% for a in list %}
    {% if a.foo %}{{ a.foo }}{% else %}Whatever exception text you
want{% endif %} {{ a.bar }}
{% endfor %}


Erik
-- 
portfolio: http://textivism.com/
blog: http://erikanderica.org/erik/

--~--~---------~--~----~------------~-------~--~----~
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