summaryrefslogtreecommitdiff
path: root/stashbox/templates/usersadmin.html
diff options
context:
space:
mode:
authorAaron Williamson <aaron@copiesofcopies.org>2013-03-06 08:53:53 -0500
committerAaron Williamson <aaron@copiesofcopies.org>2013-03-06 08:53:53 -0500
commit698ec51664b875431f23470c4621983f6965f951 (patch)
tree89d36e67d339e2acd472d044e66e295a11b63672 /stashbox/templates/usersadmin.html
parent901c0e782d8adb1e445672ce45eb40e660379b0d (diff)
Minimal viable stache.
Diffstat (limited to 'stashbox/templates/usersadmin.html')
-rw-r--r--stashbox/templates/usersadmin.html25
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>