documented set changes
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 12 May 2008 23:05:20 +0000 (01:05 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 12 May 2008 23:05:20 +0000 (01:05 +0200)
--HG--
branch : trunk

docs/templates.rst

index 62ca9e37b657b9d711a70e0c52838a5df0a8723c..4270b9dfc6b2a7243c1ae5423eb625cc18799605 100644 (file)
@@ -625,10 +625,10 @@ Inside code blocks you can also assign values to variables.  Assignments at
 top level (outside of blocks, macros or loops) are exported from the template
 like top level macros and can be imported by other templates.
 
-Assignments are just written in code blocks like any other statement just
-without explicit keyword::
+Assignments use the `set` tag and can have multiple targets::
 
-    {% navigation = [('index.html', 'Index'), ('about.html', 'About')] %}
+    {% set navigation = [('index.html', 'Index'), ('about.html', 'About')] %}
+    {% set key, value = call_something() %}
 
 
 Extends