Merge pull request #993 from almostabc/template-include-docs-update

Removed a trailing space in the template builtins docs.
This commit is contained in:
Simon Charette 2013-04-04 23:40:29 -07:00
commit d7fa80258b
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ just declare the cycle, but not output the first value, you can add a
{% for obj in some_list %} {% for obj in some_list %}
{% cycle 'row1' 'row2' as rowcolors silent %} {% cycle 'row1' 'row2' as rowcolors silent %}
<tr class="{{ rowcolors }}">{% include "subtemplate.html " %}</tr> <tr class="{{ rowcolors }}">{% include "subtemplate.html" %}</tr>
{% endfor %} {% endfor %}
This will output a list of ``<tr>`` elements with ``class`` This will output a list of ``<tr>`` elements with ``class``