diff options
Diffstat (limited to 'stapp/video/views.py')
-rw-r--r-- | stapp/video/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
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} |