annotate potd/views.py @ 752:95f4e7f352fd
For Django 1.6: contrib auth password reset confirm view signature changed.
The uidb64 parameter was previously base 36 encoded and named uidb36.
Had to update urls.py. While I was in there I decided to make the
password reset email use the {% url %} tag to be more resilient if the
url changes.
author |
Brian Neal <bgneal@gmail.com> |
date |
Wed, 01 Jan 2014 19:52:07 -0600 |
parents |
ee87ea74d46b |
children |
e932f2ecd4a7 |
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
|
bgneal@14
|
6 from django.shortcuts import get_object_or_404
|
gremmie@1
|
7 from django.template import RequestContext
|
gremmie@1
|
8
|
gremmie@1
|
9 from potd.models import Current
|
bgneal@14
|
10 from potd.models import Photo
|
gremmie@1
|
11
|
gremmie@1
|
12
|
gremmie@1
|
13 def view(request):
|
gremmie@1
|
14 potd = Current.objects.get_current_photo()
|
gremmie@1
|
15 return render_to_response('potd/view.html', {
|
gremmie@1
|
16 'potd': potd,
|
bgneal@14
|
17 'is_current': True,
|
gremmie@1
|
18 },
|
gremmie@1
|
19 context_instance = RequestContext(request))
|
bgneal@14
|
20
|
bgneal@14
|
21 def archive(request, id):
|
bgneal@14
|
22 photo = get_object_or_404(Photo, pk=id)
|
bgneal@14
|
23 return render_to_response('potd/view.html', {
|
bgneal@14
|
24 'potd': photo,
|
bgneal@14
|
25 'is_current': False,
|
bgneal@14
|
26 },
|
bgneal@14
|
27 context_instance = RequestContext(request))
|