Skip to content

Commit

Permalink
Fix examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
doerwalter committed Jan 19, 2022
1 parent d0f7795 commit 5b10f40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/UL4_Tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ loop body must be marked with an ``<?end for?>`` tag:

<ul>
<?for person in data.persons?>
<li><?print person.lastname?>, <?person.firstname?></li>
<li><?print person.lastname?>, <?print person.firstname?></li>
<?end for?>
</ul>

Expand Down Expand Up @@ -112,7 +112,7 @@ For example we can output the person list only if there are any persons:
<?if persons?>
<ul>
<?for person in persons?>
<li><?print person.lastname?>, <?person.firstname?></li>
<li><?print person.lastname?>, <?print person.firstname?></li>
<?end for?>
</ul>
<?end if?>
Expand All @@ -124,7 +124,7 @@ For example we can output the person list only if there are any persons:
<?if persons?>
<ul>
<?for person in persons?>
<li><?print person.lastname?>, <?person.firstname?></li>
<li><?print person.lastname?>, <?print person.firstname?></li>
<?end for?>
</ul>
<?else?>
Expand Down

0 comments on commit 5b10f40

Please sign in to comment.