summaryrefslogtreecommitdiffstats
path: root/module/web/pyload
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-03-31 14:27:31 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-03-31 14:27:31 +0200
commit53865e7411fa0528093cbfa5f4ba7591e71f2ef8 (patch)
tree11f463c460755c96700e0feba5e68e31052c9195 /module/web/pyload
parentfreespace for windows (diff)
downloadpyload-53865e7411fa0528093cbfa5f4ba7591e71f2ef8.tar.xz
parser fix
Diffstat (limited to 'module/web/pyload')
-rw-r--r--module/web/pyload/views.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py
index e8df50596..6dbbd22c6 100644
--- a/module/web/pyload/views.py
+++ b/module/web/pyload/views.py
@@ -169,4 +169,6 @@ def collector(request):
@permission('pyload.can_change_status')
@check_server
def config(request):
- return render_to_response(join(settings.TEMPLATE, 'settings.html'), RequestContext(request, {}, [status_proc]))
+ conf = settings.PYLOAD.get_config_data()
+
+ return render_to_response(join(settings.TEMPLATE, 'settings.html'), RequestContext(request, {'conf': conf}, [status_proc]))