Fixed #18110 -- Improve template cache tag documentation

This commit is contained in:
Julian Bez 2012-06-14 17:42:55 +03:00
parent 4d46106f8c
commit 3c0877938f
1 changed files with 2 additions and 1 deletions

View File

@ -595,7 +595,8 @@ the ``cache`` template tag. To give your template access to this tag, put
The ``{% cache %}`` template tag caches the contents of the block for a given The ``{% cache %}`` template tag caches the contents of the block for a given
amount of time. It takes at least two arguments: the cache timeout, in seconds, amount of time. It takes at least two arguments: the cache timeout, in seconds,
and the name to give the cache fragment. For example: and the name to give the cache fragment. The name will be taken as is, do not
use a variable. For example:
.. code-block:: html+django .. code-block:: html+django