From be07f320f872c9be90d9fbc53aba8fadadc35396 Mon Sep 17 00:00:00 2001 From: Jay Parikh Date: Thu, 19 Jul 2012 19:25:52 +0530 Subject: changed the UI to seperate the main video and removed thumbnails --- stapp/video/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stapp/video') diff --git a/stapp/video/views.py b/stapp/video/views.py index 3ec1953..3500f74 100644 --- a/stapp/video/views.py +++ b/stapp/video/views.py @@ -12,7 +12,7 @@ def show(request): latest_video = Video.objects.latest('created') #Get last three modified modules - latest_modules = Module.objects.order_by('-modified')[0:3] + latest_modules = Module.objects.order_by('-modified') context = { 'modules' : latest_modules , 'play' : latest_video} -- cgit