Fixed #24657 -- Fixed include template tag example.

Thanks pattypatpat for the report.
This commit is contained in:
Tim Graham 2015-04-17 07:51:35 -04:00
parent 02260ea3f6
commit f47c796b52
1 changed files with 4 additions and 2 deletions

View File

@ -676,9 +676,11 @@ The variable may also be any object with a ``render()`` method that accepts a
context. This allows you to reference a compiled ``Template`` in your context. context. This allows you to reference a compiled ``Template`` in your context.
An included template is rendered within the context of the template that An included template is rendered within the context of the template that
includes it. This example produces the output ``"Hello, John"``: includes it. This example produces the output ``"Hello, John!"``:
* Context: variable ``person`` is set to ``"John"`` and variable ``greeting``
is set to ``"Hello"``.
* Context: variable ``person`` is set to ``"john"``.
* Template:: * Template::
{% include "name_snippet.html" %} {% include "name_snippet.html" %}