From aa1b537b118fbc0417b990f61bff2850ca6cad1c Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Wed, 29 Dec 2010 14:19:38 +0000 Subject: [PATCH] Fixed #13961 - note that reverse URL lookups can't be done within a blocktrans tag. Thanks garrison for the report and richardb and zerok for work on the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15100 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/i18n/internationalization.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/topics/i18n/internationalization.txt b/docs/topics/i18n/internationalization.txt index cf009e4244..6b728d5f8e 100644 --- a/docs/topics/i18n/internationalization.txt +++ b/docs/topics/i18n/internationalization.txt @@ -500,6 +500,14 @@ apply. .. note:: The previous more verbose format is still supported: ``{% blocktrans with book|title as book_t and author|title as author_t %}`` +Reverse URL lookups cannot be carried out within the ``blocktrans`` and should +be retrieved (and stored) beforehand:: + + {% url path.to.view arg arg2 as the_url %} + {% blocktrans %} + This is a URL: {{ the_url }} + {% endblocktrans %} + .. _template-translation-vars: Other tags