1
0
mirror of https://github.com/django/django.git synced 2025-03-14 03:10:45 +00:00

[1.6.x] Fixed #23499 -- Error in built-in template tag "now" documentation

Backport of ab8248361e0a7b4fc7684eaaa5891e16b8562683 from master.
This commit is contained in:
Joseph Dougherty 2014-09-16 23:30:11 -04:00 committed by Baptiste Mispelon
parent 452587aba8
commit 9a66244bd8

View File

@ -770,11 +770,11 @@ Example::
It is {% now "jS F Y H:i" %}
Note that you can backslash-escape a format string if you want to use the
"raw" value. In this example, "f" is backslash-escaped, because otherwise
"f" is a format string that displays the time. The "o" doesn't need to be
escaped, because it's not a format character::
"raw" value. In this example, both "o" and "f" are backslash-escaped, because
otherwise each is a format string that displays the year and the time,
respectively::
It is the {% now "jS o\f F" %}
It is the {% now "jS \o\f F" %}
This would display as "It is the 4th of September".