diff options
Diffstat (limited to 'stashbox/templates/usersadmin.html')
-rw-r--r-- | stashbox/templates/usersadmin.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/stashbox/templates/usersadmin.html b/stashbox/templates/usersadmin.html new file mode 100644 index 0000000..a916386 --- /dev/null +++ b/stashbox/templates/usersadmin.html @@ -0,0 +1,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> |