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