From 34428218365c65644ca89896b287ef922921febc Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 28 Aug 2008 11:29:00 +0000 Subject: [PATCH] Fixed #8595: Removed a note about possible changes to the syntax of the {% url %} template tag. Thanks to julien for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8651 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/templates/builtins.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 6fc0d5cf1e..d3c8355241 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -643,8 +643,6 @@ The argument tells which template bit to output: url ~~~ -**Note that the syntax for this tag may change in the future, as we make it more robust.** - Returns an absolute URL (i.e., a URL without the domain name) matching a given view function and optional parameters. This is a way to output links without violating the DRY principle by having to hard-code URLs in your templates::