Mercurial > public > sg101
diff potd/views.py @ 1107:977e76f7f736
POTD converted to V3 design.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 06 Jul 2016 21:41:16 -0500 |
parents | e932f2ecd4a7 |
children |
line wrap: on
line diff
--- a/potd/views.py Wed Jul 06 20:46:09 2016 -0500 +++ b/potd/views.py Wed Jul 06 21:41:16 2016 -0500 @@ -14,6 +14,7 @@ return render(request, 'potd/view.html', { 'potd': potd, 'is_current': True, + 'V3_DESIGN': True, }) @@ -22,4 +23,5 @@ return render(request, 'potd/view.html', { 'potd': photo, 'is_current': False, + 'V3_DESIGN': True, })