Hi,
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?
Regards.