diff options
author | Aaron Williamson <aaron@copiesofcopies.org> | 2013-03-06 08:53:53 -0500 |
---|---|---|
committer | Aaron Williamson <aaron@copiesofcopies.org> | 2013-03-06 08:53:53 -0500 |
commit | 698ec51664b875431f23470c4621983f6965f951 (patch) | |
tree | 89d36e67d339e2acd472d044e66e295a11b63672 /stashbox/templates/user_add.html | |
parent | 901c0e782d8adb1e445672ce45eb40e660379b0d (diff) |
Minimal viable stache.
Diffstat (limited to 'stashbox/templates/user_add.html')
-rw-r--r-- | stashbox/templates/user_add.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/stashbox/templates/user_add.html b/stashbox/templates/user_add.html new file mode 100644 index 0000000..a916386 --- /dev/null +++ b/stashbox/templates/user_add.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> |