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

Thanks batisteo for the report.
This commit is contained in:
Claude Paroz 2013-06-15 12:02:25 +02:00
parent beb652e069
commit bf9975b0eb
1 changed files with 1 additions and 1 deletions

View File

@ -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>