1
0
mirror of https://github.com/django/django.git synced 2025-02-24 17:15:03 +00:00

Fixed a documentation typo introduced by b914991b37.

This commit is contained in:
Simon Charette 2013-11-05 19:38:46 -05:00
parent b914991b37
commit 87908b4fc2

View File

@ -1434,7 +1434,8 @@ then the output would be:
]
You can also do more complicated things like::
{{ for book in books|dictsort:"author.age"
{% for book in books|dictsort:"author.age" %}
* {{ book.title }} ({{ book.author.name }})
{% endfor %}