diff --git a/biscuit/apps/chronos/views.py b/biscuit/apps/chronos/views.py
index 4e050cd632b5b9d7de39f940ec0067d27a526b03..3f2001b77dc78e535c267399f817cd4ab661d701 100644
--- a/biscuit/apps/chronos/views.py
+++ b/biscuit/apps/chronos/views.py
@@ -1,11 +1,12 @@
 from django.contrib.auth.decorators import login_required
-from django.shortcuts import redirect, render
+from django.shortcuts import render
 
 from biscuit.core.decorators import admin_required
 
+
 @login_required
 @admin_required
 def timetable(request):
     context = {}
 
-    return render(request, 'chronos/tt_week.html')
+    return render(request, 'chronos/tt_week.html', context)