author | nishanth |
Sun, 06 Jun 2010 17:32:50 +0530 | |
branch | anoop |
changeset 56 | 7dfacad8adee |
parent 26 | 212fcba4459e |
child 58 | a9f5048830f6 |
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 |
|
23 | 3 |
from sage_days.settings import ADMIN_URL_PREFIX as aup |
56 | 4 |
from sage_days.sdi.views import register, reg_complete, list_stats, homepage, mail_users |
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), |
23 | 9 |
(r'%s/stats/$'%aup, list_stats), |
56 | 10 |
(r'%s/send_invi/$'%aup, send_invi), |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
11 |
) |
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff
changeset
|
12 |