document single inheritance
authorArmin Ronacher <armin.ronacher@active-4.com>
Sat, 10 Nov 2007 23:11:37 +0000 (00:11 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sat, 10 Nov 2007 23:11:37 +0000 (00:11 +0100)
--HG--
branch : trunk

docs/src/inheritance.txt

index 0b7941a12e335a70b00c1573d2d99e1564e6eda5..d9d0cdc17e8d5d09bb6f87f2bd903e76d6cf3251 100644 (file)
@@ -9,6 +9,7 @@ elements of your site and defines **blocks** that child templates can override.
 Sounds complicated but is very basic. It's easiest to understand it by starting
 with an example.
 
+
 Base Template
 =============
 
@@ -42,6 +43,7 @@ In this example, the ``{% block %}`` tags define four blocks that child template
 can fill in. All the `block` tag does is to tell the template engine that a
 child template may override those portions of the template.
 
+
 Child Template
 ==============
 
@@ -143,6 +145,12 @@ an syntax error. Here some examples:
     and defines a new block subtemplates can override.
 
 
+.. admonition:: Note
+
+    Unlike Python Jinja does not support multiple inheritance.  So you can
+    only have one extends tag with only one constant string argument.
+
+
 Super Blocks
 ============