made some changes to links and added accomodation page.
--- a/sdi/views.py Sat Jun 05 19:09:06 2010 +0530
+++ b/sdi/views.py Sat Jun 05 19:18:40 2010 +0530
@@ -90,3 +90,6 @@
def about(request):
return render_to_response("about.html")
+
+def accomodation(request):
+ return render_to_response("accomodation.html")
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/accomodation.html Sat Jun 05 19:18:40 2010 +0530
@@ -0,0 +1,8 @@
+{% extends 'base.html' %}
+{% block title %}
+Accommodation for delegates
+{% endblock %}
+{% block content %}
+<h2>Accommodation for delegates</h2>
+<p>We will be providing limited accomodation. For further details please check the page later.</p>
+{% endblock %}
--- a/templates/base.html Sat Jun 05 19:09:06 2010 +0530
+++ b/templates/base.html Sat Jun 05 19:18:40 2010 +0530
@@ -895,8 +895,8 @@
title="Accomodation">Accomodation</a></li>
<li class="leaf first"><a href="/sage_days/venue" title="">Venue</a></li>
<!--<li class="leaf"><a href="/sage_days/speakers" title="">Speakers</a></li>-->
-<li class="leaf"><a href="/sage_days/reaching_venue"
-title="Conference Organizers">Reaching the Venue</a></li>
+<!--<li class="leaf"><a href="/sage_days/reaching_venue" -->
+<!--title="Conference Organizers">Reaching the Venue</a></li>-->
<!--<li class="leaf last"><a -->
<!--href="http://www.fossee.in" -->
<!--title="Frequently Asked Questions">FAQ's</a></li>-->
--- a/urls.py Sat Jun 05 19:09:06 2010 +0530
+++ b/urls.py Sat Jun 05 19:18:40 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
+from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about, accomodation
from sage_days.settings import APACHE_URL_PREFIX as aup
urlpatterns = patterns('',
@@ -23,6 +23,7 @@
(r'^venue/',venue),
(r'^contact/',contact),
(r'^about/',about),
+ (r'^accomodation/',accomodation),
(r'^registration/', include('sage_days.sdi.site.urls')),
(r'^captcha/', include('captcha.urls')),
)