summaryrefslogtreecommitdiff
path: root/stashbox/templates/admin_users.html
diff options
context:
space:
mode:
Diffstat (limited to 'stashbox/templates/admin_users.html')
-rw-r--r--stashbox/templates/admin_users.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/stashbox/templates/admin_users.html b/stashbox/templates/admin_users.html
deleted file mode 100644
index d51602b..0000000
--- a/stashbox/templates/admin_users.html
+++ /dev/null
@@ -1,32 +0,0 @@
-$def with (users, form)
-
-<div class="span8">
- <h2>Users</h2>
- <table class="table">
- <tr>
- <th>User</th>
- <th>Password</th>
- <th></th>
- </tr>
- $for user in users:
- <tr>
- <td><a href="/user/$user.id/edit/">$user.username</a></td>
- <td>$user.password</td>
- <td>
- <form action="/user/$user.id/delete/" method="POST">
- <input type="submit" class="btn" value="Delete" />
- </form>
- </td>
- </tr>
- </table>
-
-</div>
-
-<div class="span4">
- <h2>Add a user</h2>
-
- <form action="" method="post">
- $:form.render_css()
- </form>
-
-</div>