Commit fbeec87b authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed #6993 -- Fixed a grammar error in docs/templates.txt. Thanks, Ionut Ciocirlan

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7649 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 1b92483a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -819,7 +819,7 @@ The 'ifchanged' block tag is used within a loop. It has two possible uses.

2. If given a variable, check whether that variable has changed. For
   example, the following shows the date every time it changes, but
   only shows the hour if both the hour and the date has changed::
   only shows the hour if both the hour and the date have changed::

        {% for date in days %}
            {% ifchanged date.date %} {{ date.date }} {% endifchanged %}