reg/site/urls.py
author nishanth
Fri, 09 Apr 2010 15:35:40 +0530
changeset 6 057498d12450
parent 4 ededea9ad08b
child 8 e2699e042129
permissions -rw-r--r--
users can now register but still there is no concept of activation e-mail .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     1
from django.conf.urls.defaults import *
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     2
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     3
from workshop.reg import views as reg_views
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     4
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     5
urlpatterns = patterns('',
4
ededea9ad08b login and logout works .
nishanth
parents: 2
diff changeset
     6
    ('^$', reg_views.homepage),
ededea9ad08b login and logout works .
nishanth
parents: 2
diff changeset
     7
    ('^login/$', reg_views.user_login),
ededea9ad08b login and logout works .
nishanth
parents: 2
diff changeset
     8
    ('^logout/$', reg_views.user_logout),
6
057498d12450 users can now register but still there is no concept of activation e-mail .
nishanth
parents: 4
diff changeset
     9
    ('^register/$', reg_views.user_register),
2
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
    10
)