summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMaxime Lorant <maxime.lorant@gmail.com>2015-04-14 10:43:14 +0200
committerTim Graham <timograham@gmail.com>2015-04-14 07:05:57 -0400
commite560bc2a3e3e396e1961e8ee121fafaedc56bd16 (patch)
treeb5237f311710ad9de67346824448112f3e7f2e17 /docs/ref
parent584c6591a3c29c94026e3bebc3e5302a3d7530e3 (diff)
[1.8.x] Fixed formatting in docs/ref/templates/builtins.txt
Backport of 6023312dde022d31d44373e8834431456095dc7c from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/templates/builtins.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 807d60c434..cafa21586c 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -2464,24 +2464,24 @@ If ``value`` is ``Joel is a slug``, the output would be::
yesno
^^^^^
-Maps values for true, false and (optionally) None, to the strings "yes", "no",
-"maybe", or a custom mapping passed as a comma-separated list, and
+Maps values for ``True``, ``False``, and (optionally) ``None``, to the strings
+"yes", "no", "maybe", or a custom mapping passed as a comma-separated list, and
returns one of those strings according to the value:
For example::
{{ value|yesno:"yeah,no,maybe" }}
-========== ====================== ==================================
+========== ====================== ===========================================
Value Argument Outputs
-========== ====================== ==================================
+========== ====================== ===========================================
``True`` ``yes``
``True`` ``"yeah,no,maybe"`` ``yeah``
``False`` ``"yeah,no,maybe"`` ``no``
``None`` ``"yeah,no,maybe"`` ``maybe``
-``None`` ``"yeah,no"`` ``"no"`` (converts None to False
- if no mapping for None is given)
-========== ====================== ==================================
+``None`` ``"yeah,no"`` ``no`` (converts ``None`` to ``False``
+ if no mapping for ``None`` is given)
+========== ====================== ===========================================
Internationalization tags and filters
-------------------------------------