From c5a899b190d1afa798efade499e8d00a5286fa28 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 21 Nov 2011 10:28:12 +0000 Subject: 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 --- docs/ref/templates/builtins.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs/ref') 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 -- cgit v1.3