annotate gpp/potd/views.py @ 7:ca66189c7c44

Added tiny_mce to the GPP_THIRD_PARTY_JS setting. Updated code to use it.
author Brian Neal <bgneal@gmail.com>
date Sun, 12 Apr 2009 00:31:36 +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))