diff downloads/views.py @ 1152:fa5d03c5c28c

Finish (?) converting downloads to V3 design.
author Brian Neal <bgneal@gmail.com>
date Sun, 18 Dec 2016 21:19:34 -0600
parents f56798c96ec2
children
line wrap: on
line diff
--- a/downloads/views.py	Tue Dec 13 21:56:21 2016 -0600
+++ b/downloads/views.py	Sun Dec 18 21:19:34 2016 -0600
@@ -97,6 +97,7 @@
     return render(request, 'downloads/download_summary.html', {
         'page': the_page,
         'title': 'Newest Downloads',
+        'V3_DESIGN': True,
         })
 
 #######################################################################
@@ -117,6 +118,7 @@
     return render(request, 'downloads/download_summary.html', {
         'page': the_page,
         'title': 'Popular Downloads',
+        'V3_DESIGN': True,
         })
 
 #######################################################################
@@ -136,6 +138,7 @@
     return render(request, 'downloads/download_summary.html', {
         'page': the_page,
         'title': 'Highest Rated Downloads',
+        'V3_DESIGN': True,
         })
 
 #######################################################################
@@ -147,6 +150,7 @@
         raise Http404
     return render(request, 'downloads/download_detail.html', {
         'download' : download,
+        'V3_DESIGN': True,
         })
 
 #######################################################################
@@ -170,6 +174,7 @@
 
     return render(request, 'downloads/add.html', {
         'add_form': form,
+        'V3_DESIGN': True,
         })
 
 #######################################################################
@@ -177,6 +182,7 @@
 @login_required
 def thanks(request):
     return render(request, 'downloads/thanks.html', {
+        'V3_DESIGN': True,
         })
 
 #######################################################################