Commit 07c404be authored by Carl Meyer's avatar Carl Meyer
Browse files

[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
parent a084a07e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 %}