diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-12-20 23:43:21 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-12-20 23:43:21 +0100 |
commit | 62965d0668e81fc801c4be2d61c1a0b64b0edca8 (patch) | |
tree | 99a0c667619cacd2d0adfa688a49d13c33b6655a /module/web/pyload | |
parent | python 2.5 compatibility (diff) | |
download | pyload-62965d0668e81fc801c4be2d61c1a0b64b0edca8.tar.xz |
cli + web fixes
Diffstat (limited to 'module/web/pyload')
-rw-r--r-- | module/web/pyload/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py index a51a9c4dc..1fa9d45b7 100644 --- a/module/web/pyload/views.py +++ b/module/web/pyload/views.py @@ -63,7 +63,7 @@ def base(request, messages): @permission('pyload.can_see_dl') @check_server def home(request): - return render_to_response(join(settings.TEMPLATE,'home.html'), RequestContext(request,{},[status_proc])) + return render_to_response(join(settings.TEMPLATE,'home.html'), RequestContext(request,{'content': settings.PYLOAD.status_downloads()},[status_proc])) @login_required |