diff options
Diffstat (limited to 'stashbox')
-rw-r--r-- | stashbox/stashbox.db | bin | 7168 -> 7168 bytes | |||
-rw-r--r-- | stashbox/templates/admin_folder.html | 13 | ||||
-rw-r--r-- | stashbox/templates/folder_edit.html | 4 | ||||
-rw-r--r-- | stashbox/templates/user_add.html | 25 |
4 files changed, 1 insertions, 41 deletions
diff --git a/stashbox/stashbox.db b/stashbox/stashbox.db Binary files differindex 95b20df..0f5edd7 100644 --- a/stashbox/stashbox.db +++ b/stashbox/stashbox.db 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> |