reg/site/urls.py
author nishanth
Thu, 15 Apr 2010 23:40:14 +0530
changeset 60 d8cd7e946cde
parent 46 ff5f34e42aec
child 62 b7e47cc39342
permissions -rwxr-xr-x
added feedback.html on main repo .
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('',
9
e29ecb7819e7 password change and password reset have been done.
nishanth
parents: 8
diff changeset
     6
    (r'^$', reg_views.homepage),
e29ecb7819e7 password change and password reset have been done.
nishanth
parents: 8
diff changeset
     7
    (r'^login/$', reg_views.user_login),
e29ecb7819e7 password change and password reset have been done.
nishanth
parents: 8
diff changeset
     8
    (r'^logout/$', reg_views.user_logout),
46
ff5f34e42aec registration for workshop is now integrated with man registartion.
nishanth
parents: 45
diff changeset
     9
    (r'^register/(\w*)$', reg_views.user_register),
20
9354ef8119c6 added account_inactive and resend_activationkey functionalities
nishanth
parents: 19
diff changeset
    10
    (r'^account_created/$', reg_views.account_created),                       
21
a0f4aba61275 renamed send_activation to resend_activation .
nishanth
parents: 20
diff changeset
    11
    (r'^resend_activation/$', reg_views.resend_activation),
23
42e2a810e1c8 modified seed_db and view_event template .
nishanth
parents: 21
diff changeset
    12
    (r'^activate/(\w+)/$', reg_views.account_activate),
17
125b6fc8f20b users can view and edit profile .
nishanth
parents: 16
diff changeset
    13
    (r'^profile/view/$', reg_views.view_profile),
125b6fc8f20b users can view and edit profile .
nishanth
parents: 16
diff changeset
    14
    (r'^profile/edit/$', reg_views.edit_profile),                       
9
e29ecb7819e7 password change and password reset have been done.
nishanth
parents: 8
diff changeset
    15
    (r'^password_reset/$', reg_views.reset_password),
e29ecb7819e7 password change and password reset have been done.
nishanth
parents: 8
diff changeset
    16
    (r'^password_change/$', reg_views.change_password),
e29ecb7819e7 password change and password reset have been done.
nishanth
parents: 8
diff changeset
    17
    (r'^event/create/$', reg_views.create_event),
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents: 17
diff changeset
    18
    (r'^event/list/$', reg_views.list_events),                       
9
e29ecb7819e7 password change and password reset have been done.
nishanth
parents: 8
diff changeset
    19
    (r'^event/view/(\w+)/$', reg_views.view_event),
17
125b6fc8f20b users can view and edit profile .
nishanth
parents: 16
diff changeset
    20
    (r'^event/register/(\w+)/$', reg_views.register_for_event),
19
115860e87238 implemented list people functionality .
nishanth
parents: 18
diff changeset
    21
    (r'^event/attendees/(\w+)/$', reg_views.list_attendees),                       
13
05248e27104a added closing registration and registering for a workshop .
nishanth
parents: 12
diff changeset
    22
    (r'^event/feedback/open/(\w+)/$', reg_views.open_feedback),
05248e27104a added closing registration and registering for a workshop .
nishanth
parents: 12
diff changeset
    23
    (r'^event/feedback/close/(\w+)/$', reg_views.close_feedback),
05248e27104a added closing registration and registering for a workshop .
nishanth
parents: 12
diff changeset
    24
    (r'^event/registration/open/(\w+)/$', reg_views.open_registration),
05248e27104a added closing registration and registering for a workshop .
nishanth
parents: 12
diff changeset
    25
    (r'^event/registration/close/(\w+)/$', reg_views.close_registration),
2
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
    26
)