reg/site/urls.py
author nishanth
Thu, 08 Apr 2010 22:28:15 +0530
changeset 2 c11afa8623f7
child 4 ededea9ad08b
permissions -rw-r--r--
incorporated gen_key .
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('',
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     6
    ('^$', reg_views.something),
c11afa8623f7 incorporated gen_key .
nishanth
parents:
diff changeset
     7
)