mirror of https://github.com/django/django.git
Fixed #28190 -- Clarifed how include/extends treat template names.
This commit is contained in:
parent
0c1355e9bb
commit
1f2e4f9cfe
|
@ -215,8 +215,9 @@ This tag can be used in two ways:
|
||||||
|
|
||||||
See :ref:`template-inheritance` for more information.
|
See :ref:`template-inheritance` for more information.
|
||||||
|
|
||||||
A string argument may be a relative path starting with ``./`` or ``../``. For
|
Normally the template name is relative to the template loader's root directory.
|
||||||
example, assume the following directory structure::
|
A string argument may also be a relative path starting with ``./`` or ``../``.
|
||||||
|
For example, assume the following directory structure::
|
||||||
|
|
||||||
dir1/
|
dir1/
|
||||||
template.html
|
template.html
|
||||||
|
@ -674,8 +675,9 @@ This example includes the contents of the template ``"foo/bar.html"``::
|
||||||
|
|
||||||
{% include "foo/bar.html" %}
|
{% include "foo/bar.html" %}
|
||||||
|
|
||||||
A string argument may be a relative path starting with ``./`` or ``../`` as
|
Normally the template name is relative to the template loader's root directory.
|
||||||
described in the :ttag:`extends` tag.
|
A string argument may also be a relative path starting with ``./`` or ``../``
|
||||||
|
as described in the :ttag:`extends` tag.
|
||||||
|
|
||||||
This example includes the contents of the template whose name is contained in
|
This example includes the contents of the template whose name is contained in
|
||||||
the variable ``template_name``::
|
the variable ``template_name``::
|
||||||
|
|
Loading…
Reference in New Issue