Mercurial > public > sg101
diff potd/views.py @ 581:ee87ea74d46b
For Django 1.4, rearranged project structure for new manage.py.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 May 2012 17:10:48 -0500 |
parents | gpp/potd/views.py@7b6540b185d9 |
children | e932f2ecd4a7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/potd/views.py Sat May 05 17:10:48 2012 -0500 @@ -0,0 +1,27 @@ +""" +Views for the POTD application. +""" + +from django.shortcuts import render_to_response +from django.shortcuts import get_object_or_404 +from django.template import RequestContext + +from potd.models import Current +from potd.models import Photo + + +def view(request): + potd = Current.objects.get_current_photo() + return render_to_response('potd/view.html', { + 'potd': potd, + 'is_current': True, + }, + context_instance = RequestContext(request)) + +def archive(request, id): + photo = get_object_or_404(Photo, pk=id) + return render_to_response('potd/view.html', { + 'potd': photo, + 'is_current': False, + }, + context_instance = RequestContext(request))