summaryrefslogtreecommitdiff
path: root/stashbox/templates/user_add.html
blob: a916386b3bad9dd7369e36193702702f8e5ab2ff (plain)
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>