Commit 87c06fa4 authored by Tim Graham's avatar Tim Graham
Browse files

Merge pull request #364 from martey/ticket_18933

Fixed #18933 - Fixes code example for cycle in docstring.
parents 690170a8 3fb2662e
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -531,11 +531,9 @@ def cycle(parser, token):
    The optional flag "silent" can be used to prevent the cycle declaration
    from returning any value::

        {% cycle 'row1' 'row2' as rowcolors silent %}{# no value here #}
        {% for o in some_list %}
            <tr class="{% cycle rowcolors %}">{# first value will be "row1" #}
                ...
            </tr>
            {% cycle 'row1' 'row2' as rowcolors silent %}
            <tr class="{{ rowcolors }}">{% include "subtemplate.html " %}</tr>
        {% endfor %}

    """