comparison gpp/gcalendar/urls.py @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children ddd69a8e07c7
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 """
2 URLs for the gcalendar application.
3 """
4 from django.conf.urls.defaults import *
5
6 urlpatterns = patterns('gcalendar.views',
7 url(r'^$', 'index', name='gcalendar-index'),
8 url(r'^add/$', 'add_event', name='gcalendar-add'),
9 url(r'^change/$', 'edit_events', name='gcalendar-edit_events'),
10 url(r'^change/(\d+)/$', 'edit_event', name='gcalendar-edit_event'),
11 url(r'^delete/$', 'delete_event', name='gcalendar-delete'),
12 url(r'^thanks/add/$', 'add_thanks', name='gcalendar-add_thanks'),
13 url(r'^thanks/change/$', 'edit_thanks', name='gcalendar-edit_thanks'),
14 )
15 # vim: ts=4 sw=4