diff options
Diffstat (limited to 'docs/ref/templates')
| -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 |
