[1.3.X] Refs #16072 -- Corrected blocktrans multiple-argument syntax example in the docs.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17011 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Carl Meyer 2011-10-18 18:09:23 +00:00
parent a084a07ebe
commit 07c404be88
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ for use within the translation block. Examples::
You can use multiple expressions inside a single ``blocktrans`` tag::
{% blocktrans with book_t=book|title and author_t=author|title %}
{% blocktrans with book_t=book|title author_t=author|title %}
This is {{ book_t }} by {{ author_t }}
{% endblocktrans %}