Fixed #25051 -- Clarified return type of {% now %} tag.

This commit is contained in:
Tim Graham 2015-07-04 08:46:49 -04:00
parent f5d5867a4a
commit a871cf422d
1 changed files with 2 additions and 2 deletions

View File

@ -814,8 +814,8 @@ This would display as "It is the 4th of September".
You can also use the syntax ``{% now "Y" as current_year %}`` to store the
output inside a variable. This is useful if you want to use ``{% now %}``
inside a template tag like :ttag:`blocktrans` for example::
output (as a string) inside a variable. This is useful if you want to use
``{% now %}`` inside a template tag like :ttag:`blocktrans` for example::
{% now "Y" as current_year %}
{% blocktrans %}Copyright {{ current_year }}{% endblocktrans %}