Mercurial > public > sg101
view potd/views.py @ 1037:7e0c3cbd3cda
Fix bad select_related call.
In Django 1.8, select_related now throws an error if you give it an invalid
field. This was happening. Fix that query.
Also noticed an extra query generated in the display_post template. Fixed.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 29 Dec 2015 22:21:42 -0600 |
parents | e932f2ecd4a7 |
children | 977e76f7f736 |
line wrap: on
line source
""" Views for the POTD application. """ from django.shortcuts import render from django.shortcuts import get_object_or_404 from potd.models import Current from potd.models import Photo def view(request): potd = Current.objects.get_current_photo() return render(request, 'potd/view.html', { 'potd': potd, 'is_current': True, }) def archive(request, id): photo = get_object_or_404(Photo, pk=id) return render(request, 'potd/view.html', { 'potd': photo, 'is_current': False, })