summaryrefslogtreecommitdiffstats
path: root/module/web/pyload_app.py
diff options
context:
space:
mode:
authorGravatar godofdream <soilfiction@gmail.com> 2012-08-14 22:37:58 +0200
committerGravatar godofdream <soilfiction@gmail.com> 2012-08-14 22:37:58 +0200
commit90ba0c9f3adccd02b62ec3ca6b4af849a7253d14 (patch)
tree530b331524af0d7d1b1f8234bb73548f029bf430 /module/web/pyload_app.py
parentMerge (diff)
downloadpyload-90ba0c9f3adccd02b62ec3ca6b4af849a7253d14.tar.xz
first Design of Queue and Settings
Diffstat (limited to 'module/web/pyload_app.py')
-rw-r--r--module/web/pyload_app.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/module/web/pyload_app.py b/module/web/pyload_app.py
index afb97b361..843919b85 100644
--- a/module/web/pyload_app.py
+++ b/module/web/pyload_app.py
@@ -126,6 +126,16 @@ def logout():
s.delete()
return render_to_response("logout.html", proc=[pre_processor])
+@route("/queue")
+@login_required()
+def index(api):
+ return render_to_response("queue.html", proc=[pre_processor])
+
+@route("/settings")
+@login_required()
+def index(api):
+ return render_to_response("settings.html", proc=[pre_processor])
+
@route("/")
@login_required()
def index(api):