Mercurial > public > sg101
diff 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 diff
--- a/user_photos/urls.py Mon May 30 21:09:26 2016 -0500 +++ b/user_photos/urls.py Tue Jun 14 21:16:09 2016 -0500 @@ -11,6 +11,9 @@ 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'),