1
0
mirror of https://github.com/django/django.git synced 2025-06-06 03:59:12 +00:00

[1.7.x] Fixed #24657 -- Fixed include template tag example.

Thanks pattypatpat for the report.

Backport of f47c796b52a3c504d487c2484153fa5d90a25a74 from master
This commit is contained in:
Tim Graham 2015-04-17 07:51:35 -04:00
parent ada0845dda
commit 84142946c0

View File

@ -710,9 +710,11 @@ the variable ``template_name``::
your context.
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::
{% include "name_snippet.html" %}