summaryrefslogtreecommitdiff
path: root/docs/ref/templates
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2011-11-21 10:28:12 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2011-11-21 10:28:12 +0000
commitc5a899b190d1afa798efade499e8d00a5286fa28 (patch)
tree3be4704f57848c3696e895ea6e4a79ed792a5ef8 /docs/ref/templates
parent19e54084dc7d85d0bf190e0d79575126c5d29a50 (diff)
Fixed #16787 -- Restored the ability to {% load %} template tags libraries within packages. Thanks Ivan Sagalaev for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17133 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/templates')
-rw-r--r--docs/ref/templates/builtins.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 20cce0093d..757629f47e 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -698,9 +698,10 @@ load
Loads a custom template tag set.
For example, the following template would load all the tags and filters
-registered in ``somelibrary`` and ``otherlibrary``::
+registered in ``somelibrary`` and ``otherlibrary`` located in package
+``package``::
- {% load somelibrary otherlibrary %}
+ {% load somelibrary package.otherlibrary %}
.. versionchanged:: 1.3