From 9428c2386937d0d311d5159a74b28cd309e92232 Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Thu, 3 Mar 2011 19:35:27 +0000 Subject: [PATCH] Fixed #15528 -- Added versionchanged directive to load template tag docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15735 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/templates/builtins.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 00eb509fb7..1befa89e6c 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -665,6 +665,8 @@ registered in ``somelibrary`` and ``otherlibrary``:: {% load somelibrary otherlibrary %} +.. versionchanged:: 1.3 + You can also selectively load individual filters or tags from a library, using the ``from`` argument. In this example, the template tags/filters named ``foo`` and ``bar`` will be loaded from ``somelibrary``::