]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
A double quote is missing 381/head
authorYuval Greenfield <ubershmekel@gmail.com>
Thu, 6 Nov 2014 17:31:32 +0000 (09:31 -0800)
committerYuval Greenfield <ubershmekel@gmail.com>
Thu, 6 Nov 2014 17:31:32 +0000 (09:31 -0800)
docs/tricks.rst

index 122c079a7cf8c56c7ac294f0645a12ed31deb3d6..61647fff143a9b698182e6f064ff1dd46c695974 100644 (file)
@@ -93,7 +93,7 @@ desired to have access to an outer loop it's possible to alias it::
       <tr>
       {% set rowloop = loop %}
       {% for cell in row %}
-        <td id="cell-{{ rowloop.index }}-{{ loop.index }}>{{ cell }}</td>
+        <td id="cell-{{ rowloop.index }}-{{ loop.index }}">{{ cell }}</td>
       {% endfor %}
       </tr>
     {% endfor %}