From 92a7668ae75e6b6244083dc56cdf50567f72086e Mon Sep 17 00:00:00 2001 From: Jay Parikh Date: Mon, 23 Jul 2012 15:27:25 +0530 Subject: modification to change the description and name of the video being played --- stapp/video/views.py | 1 + 1 file changed, 1 insertion(+) (limited to 'stapp/video') diff --git a/stapp/video/views.py b/stapp/video/views.py index 544c2b0..8b7240d 100644 --- a/stapp/video/views.py +++ b/stapp/video/views.py @@ -15,6 +15,7 @@ def show(request): latest_modules = Module.objects.order_by('-modified')[0:3] all_modules = Module.objects.order_by('modified') + context = { 'latest_modules' : latest_modules , 'play' : latest_video, 'all_modules':all_modules} return render(request, 'video/home.html', context) -- cgit