summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/web/pyload_app.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/module/web/pyload_app.py b/module/web/pyload_app.py
index e6c8300a2..185c773a3 100644
--- a/module/web/pyload_app.py
+++ b/module/web/pyload_app.py
@@ -151,3 +151,8 @@ def index(api):
def settings(api):
return render_to_response("settings.html", proc=[pre_processor])
+@route("/admin")
+@login_required()
+def admin(api):
+ return render_to_response("admin.html", proc=[pre_processor])
+