author | anoop |
Wed, 28 Jul 2010 12:46:43 +0530 | |
branch | anoop |
changeset 191 | d0cf203b712b |
parent 172 | 32c2b57c45f8 |
child 222 | 443bbd61e84b |
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 |
|
109 | 7 |
from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about |
172 | 8 |
from sage_days.sdi.views import accomodation, about_mumbai, reaching_iitb, talks_proposed, sprint_info, workshop_info |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
9 |
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
|
10 |
|
0 | 11 |
urlpatterns = patterns('', |
12 |
# Example: |
|
13 |
# (r'^sage_days/', include('sage_days.foo.urls')), |
|
14 |
||
15 |
# Uncomment the admin/doc line below and add 'django.contrib.admindocs' |
|
16 |
# to INSTALLED_APPS to enable admin documentation: |
|
17 |
# (r'^admin/doc/', include('django.contrib.admindocs.urls')), |
|
18 |
||
19 |
# Uncomment the next line to enable the admin: |
|
40 | 20 |
# (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
|
21 |
(r'^$',homepage), |
31 | 22 |
(r'^schedule/',schedule), |
23 |
(r'^organizers/',organizers), |
|
24 |
(r'^venue/',venue), |
|
25 |
(r'^contact/',contact), |
|
26 |
(r'^about/',about), |
|
48
a3e6f9470549
made some changes to links and added accomodation page.
anoop
parents:
41
diff
changeset
|
27 |
(r'^accomodation/',accomodation), |
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
28 |
(r'^registration/', include('sage_days.sdi.site.urls')), |
41 | 29 |
(r'^captcha/', include('captcha.urls')), |
84 | 30 |
(r'^about_mumbai/',about_mumbai), |
31 |
(r'^reaching_iitb/',reaching_iitb), |
|
91 | 32 |
(r'^talks_proposed/',talks_proposed), |
143
a752dc99e23c
added link to sprint_info and created a basic template
nishanth
parents:
109
diff
changeset
|
33 |
(r'^what_is_sprint/', sprint_info), |
191 | 34 |
(r'^pre_sage_days_workshop/', workshop_info), |
0 | 35 |
) |