Sorry, i'm in the habit of using tabs to indent code, so I pressed tab
while editing that sinippet, then hit enter, which ended up sending
the message.
Anyways, you could som something like:
{% for o in some_list %}
<!--print o's data-->
{% cycle '/' '/' '/' '<br>' %}
{% endfor %}
That should print a newline for every 3 items, then print a newline
character on the next item.
[EMAIL PROTECTED] wrote:
> You could use the "cycle" template tag (<a href='http://
> www.djangoproject.com/documentation/templates/#cycle'>Documentation</a>).
>
> If your separator for a single row was a slash, you could do something
> like
>
> {% for o in some_list %}
>
> {% cycle '' 'row2' rowvar %}
> ...
> </tr>
> {% endfor %}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" 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-users?hl=en
-~----------~----~----~----~------~----~------~--~---