Greg wrote:
> Hello,
> I have a table in my template that will contain an x number of rows
> depanding on what I get back from the view.  I want my table row
> background color to rotate between red and white.  As of now, I don't
> know how to keep track of each iteration through my for loop to set
> the appropriate bgcolor.

You're thinking too hard about the problem. :)

http://www.djangoproject.com/documentation/templates/

Search for the word "cycle":

{% for o in some_list %}
     <tr class="{% cycle 'row1' 'row2' rowvar %}">
         ...
     </tr>
{% endfor %}


Good luck!
gav

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