sdi/site/urls.py
author nishanth
Sun, 06 Jun 2010 17:32:50 +0530
branchanoop
changeset 56 7dfacad8adee
parent 26 212fcba4459e
child 58 a9f5048830f6
permissions -rw-r--r--
provided an interface for sending out emails
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
2aae8293f3a7 added list statiscs page
nishanth
parents: 22
diff changeset
     3
from sage_days.settings import ADMIN_URL_PREFIX as aup
56
7dfacad8adee provided an interface for sending out emails
nishanth
parents: 26
diff changeset
     4
from sage_days.sdi.views import register, reg_complete, list_stats, homepage, mail_users
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     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
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     8
                       (r'^complete/$', reg_complete),
23
2aae8293f3a7 added list statiscs page
nishanth
parents: 22
diff changeset
     9
                       (r'%s/stats/$'%aup, list_stats),
56
7dfacad8adee provided an interface for sending out emails
nishanth
parents: 26
diff changeset
    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