author | anoop |
Wed, 14 Jul 2010 18:27:17 +0530 | |
branch | anoop |
changeset 84 | 7007ec492eac |
parent 48 | a3e6f9470549 |
child 85 | c62a1f9ef609 |
permissions | -rw-r--r-- |
0 | 1 |
from django.conf.urls.defaults import * |
2 |
||
3 |
# Uncomment the next two lines to enable the admin: |
|
16 | 4 |
from django.contrib import admin |
5 |
admin.autodiscover() |
|
0 | 6 |
|
84 | 7 |
from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about, accomodation, about_venue, about_mumbai, reaching_iitb |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
8 |
from sage_days.settings import APACHE_URL_PREFIX as aup |
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
9 |
|
0 | 10 |
urlpatterns = patterns('', |
11 |
# Example: |
|
12 |
# (r'^sage_days/', include('sage_days.foo.urls')), |
|
13 |
||
14 |
# Uncomment the admin/doc line below and add 'django.contrib.admindocs' |
|
15 |
# to INSTALLED_APPS to enable admin documentation: |
|
16 |
# (r'^admin/doc/', include('django.contrib.admindocs.urls')), |
|
17 |
||
18 |
# Uncomment the next line to enable the admin: |
|
40 | 19 |
# (r'^administration/', include(admin.site.urls)), |
26
212fcba4459e
changed the app to work with apache + added base.html, and did needed changes.
anoop
parents:
16
diff
changeset
|
20 |
(r'^$',homepage), |
31 | 21 |
(r'^schedule/',schedule), |
22 |
(r'^organizers/',organizers), |
|
23 |
(r'^venue/',venue), |
|
24 |
(r'^contact/',contact), |
|
25 |
(r'^about/',about), |
|
48
a3e6f9470549
made some changes to links and added accomodation page.
anoop
parents:
41
diff
changeset
|
26 |
(r'^accomodation/',accomodation), |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
27 |
(r'^registration/', include('sage_days.sdi.site.urls')), |
41 | 28 |
(r'^captcha/', include('captcha.urls')), |
84 | 29 |
(r'^about_venue/',about_venue), |
30 |
(r'^about_mumbai/',about_mumbai), |
|
31 |
(r'^reaching_iitb/',reaching_iitb), |
|
0 | 32 |
) |