> When I do <tr id="item_{{ product.id }}"> in a template I get <tr
> id="item_1"> in the rendered html as expected.
> 
> Now I want to do {% cycle '<tr id="item_{{ product.id }}">' '<tr
> class="odd" id="item_{{ product.id }}">' %}, but the desired
> concatenation does not happen.
> 
> How do I achieve what I want?


sounds like you want something like

   <tr {% cycle "class='odd'" "" %}
    id="item_{{ product.id }}">

-tim




--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=.


Reply via email to