On Jul 21, 8:28 pm, truebosko <[EMAIL PROTECTED]> wrote:
<snip>
> {% if is_new_row forloop.counter %}
> </tr><tr> ...
> {% endif %}
>

You can't use a tag inside another tag - in this case, the 'if' tag.
What you can do, though, is use a filter. So you need something like
this:

@register.filter
def is_new_row(counter)
... etc ...

and in the template:

{% if forloop.counter|is_new_row %}
...etc...
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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