Mercurial > public > sg101
annotate smiley/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 |
rev | line source |
---|---|
bgneal@12 | 1 """ |
bgneal@12 | 2 Views for the Smiley application. |
bgneal@12 | 3 """ |
bgneal@1032 | 4 from django.shortcuts import render |
bgneal@12 | 5 from django.contrib.auth.decorators import login_required |
bgneal@12 | 6 from django.views.decorators.http import require_GET |
bgneal@12 | 7 |
bgneal@12 | 8 from smiley.models import Smiley |
bgneal@12 | 9 |
bgneal@12 | 10 @login_required |
bgneal@12 | 11 @require_GET |
bgneal@123 | 12 def farm(request, extra=False): |
bgneal@1032 | 13 return render(request, 'smiley/smiley_farm.html', { |
bgneal@123 | 14 'smilies': Smiley.objects.get_smilies(extra), |
bgneal@1032 | 15 }) |