diff options
-rwxr-xr-x | pytask/taskapp/views.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pytask/taskapp/views.py b/pytask/taskapp/views.py index 122d690..acea595 100755 --- a/pytask/taskapp/views.py +++ b/pytask/taskapp/views.py @@ -384,9 +384,10 @@ def view_work(request, task_id): user = request.user old_reports = task.reports.all() - context = {"task": task, - "old_reports": old_reports, - } + context = { + 'task': task, + 'old_reports': old_reports, + } if not user.is_authenticated(): return shortcuts.render_to_response( |