Added docs for comparisions
authorArmin Ronacher <armin.ronacher@active-4.com>
Sun, 8 Aug 2010 19:59:29 +0000 (21:59 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sun, 8 Aug 2010 19:59:29 +0000 (21:59 +0200)
--HG--
branch : trunk

docs/templates.rst

index 2588f84f8e602d16f71a78778118adede5a62680..da943cc9afe476f50806e952c886035a892c0955 100644 (file)
@@ -985,6 +985,27 @@ but exists for completeness' sake.  The following operators are supported:
     Raise the left operand to the power of the right operand.  ``{{ 2**3 }}``
     would return ``8``.
 
+Comparisions
+~~~~~~~~~~~~
+
+==
+    Compares two objects for equality.
+
+!=
+    Compares two objects for inequality.
+
+>
+    `true` if the left hand side is greater than the right hand side.
+
+>=
+    `true` if the left hand side is greater or equal to the right hand side.
+
+<
+    `true` if the left hand side is lower than the right hand side.
+
+<=
+    `true` if the left hand side is lower or equal to the right hand side.
+
 Logic
 ~~~~~