]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix html tag 1174/head
authorNils K <24257556+septatrix@users.noreply.github.com>
Sun, 22 Mar 2020 16:58:20 +0000 (17:58 +0100)
committerGitHub <noreply@github.com>
Sun, 22 Mar 2020 16:58:20 +0000 (17:58 +0100)
docs/templates.rst

index c08ce4b44e015688964ce6bed3bf3101ac41cd2e..a346ef2332b1c96d2bd30417410b2a6cd4bd1a1e 100644 (file)
@@ -912,9 +912,9 @@ Here's an example of how a call block can be used with arguments::
 
     {% call(user) dump_users(list_of_user) %}
         <dl>
-            <dl>Realname</dl>
+            <dt>Realname</dt>
             <dd>{{ user.realname|e }}</dd>
-            <dl>Description</dl>
+            <dt>Description</dt>
             <dd>{{ user.description }}</dd>
         </dl>
     {% endcall %}