- Accomodation -
- The Venue +
- Venue diff -r 7007ec492eac -r c62a1f9ef609 templates/reaching_iitb.html --- a/templates/reaching_iitb.html Wed Jul 14 18:27:17 2010 +0530 +++ b/templates/reaching_iitb.html Wed Jul 14 19:43:07 2010 +0530 @@ -5,7 +5,7 @@ {% block content %}
About Venue
-The Venue : IIT Bombay | The City : Mumbai | How to reach IIT Bombay?
+Venue : IIT Bombay | City : Mumbai | How to reach IIT Bombay?
How to reach IIT Bombay?
diff -r 7007ec492eac -r c62a1f9ef609 templates/venue.html --- a/templates/venue.html Wed Jul 14 18:27:17 2010 +0530 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ -{% extends 'base.html' %} -{% block title %} -Venue -{% endblock %} -{% block content %} -Venue
-IIT Bombay, Mumbai, India.
-{% endblock %} diff -r 7007ec492eac -r c62a1f9ef609 urls.py --- a/urls.py Wed Jul 14 18:27:17 2010 +0530 +++ b/urls.py Wed Jul 14 19:43:07 2010 +0530 @@ -4,7 +4,7 @@ from django.contrib import admin admin.autodiscover() -from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about, accomodation, about_venue, about_mumbai, reaching_iitb +from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about, accomodation, about_mumbai, reaching_iitb from sage_days.settings import APACHE_URL_PREFIX as aup urlpatterns = patterns('', @@ -26,7 +26,6 @@ (r'^accomodation/',accomodation), (r'^registration/', include('sage_days.sdi.site.urls')), (r'^captcha/', include('captcha.urls')), - (r'^about_venue/',about_venue), (r'^about_mumbai/',about_mumbai), (r'^reaching_iitb/',reaching_iitb), )