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