Mercurial > public > sg101
view gcalendar/urls.py @ 1157:e4f2d6a4b401
Rework S3 connection logic for latest versions of Python 2.7.
Had to make these changes for Ubuntu 16.04. Seems backward compatible
with production.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 19 Jan 2017 18:35:53 -0600 |
parents | deed541ca79d |
children |
line wrap: on
line source
""" URLs for the gcalendar application. """ from django.conf.urls import url import gcalendar.views urlpatterns = [ url(r'^$', gcalendar.views.index, name='gcalendar-index'), url(r'^add/$', gcalendar.views.add_event, name='gcalendar-add'), url(r'^change/$', gcalendar.views.edit_events, name='gcalendar-edit_events'), url(r'^change/(\d+)/$', gcalendar.views.edit_event, name='gcalendar-edit_event'), url(r'^delete/$', gcalendar.views.delete_event, name='gcalendar-delete'), ]