annotate smiley/views.py @ 1157:e4f2d6a4b401

Rework S3 connection logic for latest versions of Python 2.7. Had to make these changes for Ubuntu 16.04. Seems backward compatible with production.
author Brian Neal <bgneal@gmail.com>
date Thu, 19 Jan 2017 18:35:53 -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 })