annotate gpp/potd/views.py @ 13:777451a98f9d

Shoutbox work: shouts now have absolute URLs. Shouts can now be flagged as abuse. Minor tweak to breadcrumbs css. Added flag date to comments admin.
author Brian Neal <bgneal@gmail.com>
date Thu, 16 Apr 2009 02:00:17 +0000
parents dbd703f7d63a
children 7b6540b185d9
rev   line source
gremmie@1 1 """
gremmie@1 2 Views for the POTD application.
gremmie@1 3 """
gremmie@1 4
gremmie@1 5 from django.shortcuts import render_to_response
gremmie@1 6 from django.template import RequestContext
gremmie@1 7
gremmie@1 8 from potd.models import Current
gremmie@1 9
gremmie@1 10
gremmie@1 11 def view(request):
gremmie@1 12 potd = Current.objects.get_current_photo()
gremmie@1 13 return render_to_response('potd/view.html', {
gremmie@1 14 'potd': potd,
gremmie@1 15 },
gremmie@1 16 context_instance = RequestContext(request))