diff bandmap/views.py @ 1109:bb7e2fc24690

Convert bandmap to V3 design.
author Brian Neal <bgneal@gmail.com>
date Sun, 10 Jul 2016 21:42:08 -0500
parents 09ed84a7394c
children
line wrap: on
line diff
--- a/bandmap/views.py	Wed Jul 06 21:46:45 2016 -0500
+++ b/bandmap/views.py	Sun Jul 10 21:42:08 2016 -0500
@@ -18,7 +18,7 @@
 
 
 def map_view(request):
-    return render(request, 'bandmap/map.html')
+    return render(request, 'bandmap/map.html', {'V3_DESIGN': True})
 
 
 @login_required
@@ -40,6 +40,7 @@
 
     return render(request, 'bandmap/add.html', {
         'form': form,
+        'V3_DESIGN': True,
         })