| author | nishanth |
| Fri, 03 Sep 2010 16:31:22 +0530 | |
| branch | anoop |
| changeset 244 | f0d2036b6613 |
| parent 241 | ac1f13b2b3dc |
| child 246 | 3a32df4b3171 |
| 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 |
|
120
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
109
diff
changeset
|
4 |
from sage_days.sdi.views import send_workshop_confirm, confirm_wsp_participation, send_sagedays_confirm, confirm_sgd_participation |
| 241 | 5 |
from sage_days.sdi.views import send_acco_confirm, confirm_address |
| 22 | 6 |
|
|
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
7 |
urlpatterns = patterns('',
|
|
26
212fcba4459e
changed the app to work with apache + added base.html, and did needed changes.
anoop
parents:
23
diff
changeset
|
8 |
(r'^register/$', register), |
| 22 | 9 |
(r'^complete/$', reg_complete), |
| 64 | 10 |
(r'^stats/$', list_stats), |
11 |
(r'^send_invi/$', send_invi), |
|
| 66 | 12 |
(r'^login/$', admin_login), |
13 |
(r'^logout/$', admin_logout), |
|
| 86 | 14 |
(r'^send_wsp_cnf/$', send_workshop_confirm), |
| 96 | 15 |
(r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation), |
|
108
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
96
diff
changeset
|
16 |
(r'^send_sgd_cnf/$', send_sagedays_confirm), |
|
120
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
109
diff
changeset
|
17 |
(r'^cnf_sgd_ptc/(\w+)/$', confirm_sgd_participation), |
|
152
86bfdb64edb5
created basic view for sending acco and added corresponding url
nishanth
parents:
120
diff
changeset
|
18 |
(r'^send_acco_cnf/$', send_acco_confirm), |
| 241 | 19 |
(r'^cnf_addr/(\w+)/$', confirm_address), |
|
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
20 |
) |
|
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
21 |