1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
$def with (users, form) <div class="main"> <table class="itemlist"> <tr> <th>User</th> <th>Password</th> </tr> $for user in users: <tr> <td>$user.username</td> <td>$user.password</td> </tr> </table> </div> <div class="right"> <form action="" method="post"> $:form.render() </form> </div>