diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-21 10:28:12 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2011-11-21 10:28:12 +0000 |
| commit | c5a899b190d1afa798efade499e8d00a5286fa28 (patch) | |
| tree | 3be4704f57848c3696e895ea6e4a79ed792a5ef8 /docs/ref | |
| parent | 19e54084dc7d85d0bf190e0d79575126c5d29a50 (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')
| -rw-r--r-- | docs/ref/templates/builtins.txt | 5 |
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 |
