view user_photos/urls.py @ 718:bf5340705d0c

Completed view to delete user photos. Still need to modify the admin to delete not just the model instance but the S3 bucket keys.
author Brian Neal <bgneal@gmail.com>
date Wed, 18 Sep 2013 21:34:05 -0500
parents 13a1713d05b5
children 71d17d267e27
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'^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'),
)