Commit bf9975b0 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed #20606 -- Fixed 'for' example in template tag docs

Thanks batisteo for the report.
parent beb652e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -371,7 +371,7 @@ displayed if the given array is empty or could not be found::
    {% for athlete in athlete_list %}
        <li>{{ athlete.name }}</li>
    {% empty %}
        <li>Sorry, no athlete in this list!</li>
        <li>Sorry, no athletes in this list.</li>
    {% endfor %}
    <ul>