author | nishanth |
Thu, 15 Jul 2010 14:21:09 +0530 | |
branch | anoop |
changeset 95 | ab554d46fd34 |
parent 86 | 1f0be76a18fc |
child 96 | 8cccb8f7fff2 |
permissions | -rw-r--r-- |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
1 |
from django.conf.urls.defaults import * |
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
2 |
|
66 | 3 |
from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout |
95
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
86
diff
changeset
|
4 |
from sage_days.sdi.views import send_workshop_confirm, confirm_wsp_participation |
22 | 5 |
|
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
6 |
urlpatterns = patterns('', |
26
212fcba4459e
changed the app to work with apache + added base.html, and did needed changes.
anoop
parents:
23
diff
changeset
|
7 |
(r'^register/$', register), |
22 | 8 |
(r'^complete/$', reg_complete), |
64 | 9 |
(r'^stats/$', list_stats), |
10 |
(r'^send_invi/$', send_invi), |
|
66 | 11 |
(r'^login/$', admin_login), |
12 |
(r'^logout/$', admin_logout), |
|
86 | 13 |
(r'^send_wsp_cnf/$', send_workshop_confirm), |
95
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
86
diff
changeset
|
14 |
(r'^cnf_wsp_cnf/(\w+)/$', confirm_wsp_participation), |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
15 |
) |
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
16 |