1
0
mirror of https://github.com/django/django.git synced 2025-04-04 21:46:40 +00:00

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

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>