author | Anoop Jacob Thomas<anoop@fossee.in> |
Tue, 09 Nov 2010 13:40:41 +0530 | |
branch | anoop |
changeset 248 | 73ad1c61bb74 |
parent 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 |
|
246
3a32df4b3171
added custom invitation mail page.
Anoop Jacob Thomas<anoop@fossee.in>
parents:
241
diff
changeset
|
3 |
from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout, send_cust_invi |
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), |
|
246
3a32df4b3171
added custom invitation mail page.
Anoop Jacob Thomas<anoop@fossee.in>
parents:
241
diff
changeset
|
12 |
(r'^send_cust_invi/$', send_cust_invi), |
66 | 13 |
(r'^login/$', admin_login), |
14 |
(r'^logout/$', admin_logout), |
|
86 | 15 |
(r'^send_wsp_cnf/$', send_workshop_confirm), |
96 | 16 |
(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
|
17 |
(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
|
18 |
(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
|
19 |
(r'^send_acco_cnf/$', send_acco_confirm), |
241 | 20 |
(r'^cnf_addr/(\w+)/$', confirm_address), |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
21 |
) |
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
22 |