From df6e0314080afcd6a96c3769807991d52072b2a1 Mon Sep 17 00:00:00 2001 From: Simon Meers Date: Fri, 13 May 2011 00:48:30 +0000 Subject: [PATCH] Fixed #16005 -- Error in blocktrans docs -- thanks bezidejni git-svn-id: http://code.djangoproject.com/svn/django/trunk@16218 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/i18n/internationalization.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/i18n/internationalization.txt b/docs/topics/i18n/internationalization.txt index 9fd7662a9d..ff1c80122c 100644 --- a/docs/topics/i18n/internationalization.txt +++ b/docs/topics/i18n/internationalization.txt @@ -494,7 +494,7 @@ for use within the translation block. Examples:: If you need to bind more than one expression inside a ``blocktrans`` tag, separate the pieces with ``and``:: - {% blocktrans with book_t=book|title author_t=author|title %} + {% blocktrans with book_t=book|title and author_t=author|title %} This is {{ book_t }} by {{ author_t }} {% endblocktrans %}