Removed obsolete 'date' filter -> 'now' tag link.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14346 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Ramiro Morales 2010-10-25 12:48:56 +00:00
parent 8a8c0ed0f9
commit 248b1dea3d
1 changed files with 5 additions and 5 deletions

View File

@ -1151,17 +1151,17 @@ If ``value`` is a ``datetime`` object (e.g., the result of
``datetime.datetime.now()``), the output will be the string ``datetime.datetime.now()``), the output will be the string
``'Wed 09 Jan 2008'``. ``'Wed 09 Jan 2008'``.
Given format can be one of the predefined ones ``DATE_FORMAT``, The format passed can be one of the predefined ones ``DATE_FORMAT``,
``DATETIME_FORMAT``, ``SHORT_DATE_FORMAT`` or ``SHORT_DATETIME_FORMAT``, ``DATETIME_FORMAT``, ``SHORT_DATE_FORMAT`` or ``SHORT_DATETIME_FORMAT``, or a
or a custom format, same as the :ttag:`now` tag. Note that predefined formats custom format that uses the format specifiers shown in the table above. Note
may vary depending on the current locale. that predefined formats may vary depending on the current locale.
Assuming that :setting:`USE_L10N` is ``True`` and :setting:`LANGUAGE_CODE` is, Assuming that :setting:`USE_L10N` is ``True`` and :setting:`LANGUAGE_CODE` is,
for example, ``"es"``, then for:: for example, ``"es"``, then for::
{{ value|date:"SHORT_DATE_FORMAT" }} {{ value|date:"SHORT_DATE_FORMAT" }}
the output will be the string ``"09/01/2008"`` (The ``"SHORT_DATE_FORMAT"`` the output would be the string ``"09/01/2008"`` (the ``"SHORT_DATE_FORMAT"``
format specifier for the ``es`` locale as shipped with Django is ``"d/m/Y"``). format specifier for the ``es`` locale as shipped with Django is ``"d/m/Y"``).
When used without a format string:: When used without a format string::