author | nishanth |
Wed, 14 Jul 2010 20:15:39 +0530 | |
branch | anoop |
changeset 86 | 1f0be76a18fc |
parent 66 | 8a5436485760 |
child 95 | ab554d46fd34 |
permissions | -rw-r--r-- |
from django.conf.urls.defaults import * from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout from sage_days.sdi.views import send_workshop_confirm urlpatterns = patterns('', (r'^register/$', register), (r'^complete/$', reg_complete), (r'^stats/$', list_stats), (r'^send_invi/$', send_invi), (r'^login/$', admin_login), (r'^logout/$', admin_logout), (r'^send_wsp_cnf/$', send_workshop_confirm), )