Mercurial > public > sg101
annotate gpp/smiley/views.py @ 339:b871892264f2
Adding the sg101 IRC bot code to SVN. This code is pretty rough and needs love, but it gets the job done (one of my first Python apps). This fixes #150.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 26 Feb 2011 21:27:49 +0000 |
parents | 3ae999b0c53b |
children |
rev | line source |
---|---|
bgneal@12 | 1 """ |
bgneal@12 | 2 Views for the Smiley application. |
bgneal@12 | 3 """ |
bgneal@12 | 4 from django.shortcuts import render_to_response |
bgneal@12 | 5 from django.template import RequestContext |
bgneal@12 | 6 from django.contrib.auth.decorators import login_required |
bgneal@12 | 7 from django.views.decorators.http import require_GET |
bgneal@12 | 8 |
bgneal@12 | 9 from smiley.models import Smiley |
bgneal@12 | 10 |
bgneal@12 | 11 @login_required |
bgneal@12 | 12 @require_GET |
bgneal@123 | 13 def farm(request, extra=False): |
bgneal@12 | 14 return render_to_response('smiley/smiley_farm.html', { |
bgneal@123 | 15 'smilies': Smiley.objects.get_smilies(extra), |
bgneal@12 | 16 }, |
bgneal@12 | 17 context_instance = RequestContext(request)) |
bgneal@12 | 18 |