summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Williamson <aaron@copiesofcopies.org>2013-03-06 09:09:39 -0500
committerAaron Williamson <aaron@copiesofcopies.org>2013-03-06 09:09:39 -0500
commit10172772b9a2ee0f983e4fb4f6704df1b4cda1a0 (patch)
treee4fe5f3439fe77457df8c206f9fa3da620faf8c2
parentead326438fcb3eafc152129952847aeddbcce923 (diff)
removed unneeded templates
-rw-r--r--stashbox/stashbox.dbbin7168 -> 7168 bytes
-rw-r--r--stashbox/templates/admin_folder.html13
-rw-r--r--stashbox/templates/folder_edit.html4
-rw-r--r--stashbox/templates/user_add.html25
4 files changed, 1 insertions, 41 deletions
diff --git a/stashbox/stashbox.db b/stashbox/stashbox.db
index 95b20df..0f5edd7 100644
--- a/stashbox/stashbox.db
+++ b/stashbox/stashbox.db
Binary files differ
diff --git a/stashbox/templates/admin_folder.html b/stashbox/templates/admin_folder.html
deleted file mode 100644
index b3e8d42..0000000
--- a/stashbox/templates/admin_folder.html
+++ /dev/null
@@ -1,13 +0,0 @@
-$def with (users, form_update)
-
-<div class="span4">
- <header>
- <h2>Update folder</h2>
- </header>
-
- <form action="" method="post">
- $:form_update.render_css()
- </form>
-
-</div>
-
diff --git a/stashbox/templates/folder_edit.html b/stashbox/templates/folder_edit.html
index 70dbadc..997cb8b 100644
--- a/stashbox/templates/folder_edit.html
+++ b/stashbox/templates/folder_edit.html
@@ -1,6 +1,4 @@
-$def with (users, form_update, form_new_user)
-
-<div class="main">
+$def with (users, form_update)
<div class="span4">
<header>
diff --git a/stashbox/templates/user_add.html b/stashbox/templates/user_add.html
deleted file mode 100644
index a916386..0000000
--- a/stashbox/templates/user_add.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>