Mercurial > public > sg101
view user_photos/urls.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 | 71d17d267e27 |
children | 4f265f61874b |
line wrap: on
line source
"""URLs for the user_photos application.""" from django.conf.urls import patterns, url from django.views.generic import DetailView from user_photos.models import Photo from user_photos.views import GalleryView urlpatterns = patterns('', url(r'^upload/$', 'user_photos.views.upload', name='user_photos-upload'), url(r'^upload-ajax/$', 'user_photos.views.upload_ajax', name='user_photos-upload_ajax'), url(r'^photo/(?P<pk>\d+)/$', DetailView.as_view(model=Photo), name='user_photos-detail'), url(r'^gallery/(?P<username>[\w.@+-]{1,30})/$', GalleryView.as_view(), name='user_photos-gallery'), url(r'^delete/$', 'user_photos.views.delete', name='user_photos-delete'), )