Mercurial > public > sg101
view user_photos/urls.py @ 1096:d9cd3180c12c
More GCalendar V3 conversion in progress.
Built a brand new post editor. It is hardcoded into GCalendar
right now. We will make it more general in the future.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 14 Jun 2016 21:16:09 -0500 |
parents | 5ba2508939f7 |
children | 364f8ec48612 |
line wrap: on
line source
"""URLs for the user_photos application.""" from django.conf.urls import url from django.views.generic import DetailView from user_photos.models import Photo import user_photos.views urlpatterns = [ 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'^upload-ajax-v3/$', user_photos.views.upload_ajax_v3, name='user_photos-upload_ajax_v3'), url(r'^photo/(?P<pk>\d+)/$', DetailView.as_view(model=Photo), name='user_photos-detail'), url(r'^gallery/(?P<username>[\w.@+-]{1,30})/$', user_photos.views.GalleryView.as_view(), name='user_photos-gallery'), url(r'^delete/$', user_photos.views.delete, name='user_photos-delete'), url(r'^hotlink/$', user_photos.views.hotlink_image, name='user_photos-hotlink'), ]