From 501661813cdb03c71a33bac825bc722e23a1ab0d Mon Sep 17 00:00:00 2001
From: Kadambari Devarajan
Date: Fri, 26 Nov 2010 19:29:54 +0530
Subject: Add a new page for Sponsors and all the boiler plate. Add
responsibilities for each sponsor. Remove all the sponsor information from
right hand menu.
---
project/templates/_menu.html | 1 +
project/templates/_right_menu.html | 41 --------------------------------------
project/urls.py | 3 +++
3 files changed, 4 insertions(+), 41 deletions(-)
(limited to 'project')
diff --git a/project/templates/_menu.html b/project/templates/_menu.html
index 126b34a..b1bcc36 100644
--- a/project/templates/_menu.html
+++ b/project/templates/_menu.html
@@ -94,6 +94,7 @@
Publicity
Organizers
+ Sponsors
{% if user.is_staff %}
Registration Statistics
{% endif %}
diff --git a/project/templates/_right_menu.html b/project/templates/_right_menu.html
index ccd3afe..4a7fe85 100644
--- a/project/templates/_right_menu.html
+++ b/project/templates/_right_menu.html
@@ -8,46 +8,5 @@ IIT Bombay, India (Conference Co-Chair)
height="90" />
FOSSEE Team
- 
-
- EnhanceEdu, IIIT - Hyderabad
-
- Sponsors
-
- Venue Sponsors
-
diff --git a/project/urls.py b/project/urls.py
index 548897b..6c5ac69 100644
--- a/project/urls.py
+++ b/project/urls.py
@@ -143,6 +143,9 @@ urlpatterns += patterns('',
url(r'^%s/about/dates/$' % (SCOPE_ARG_PATTERN),
direct_to_template, {"template": "about/important_dates.html"},
name='scipycon_imp_dates'),
+ url(r'^%s/about/sponsors/$' % (SCOPE_ARG_PATTERN),
+ direct_to_template, {"template": "about/sponsors.html"},
+ name='scipycon_sponsors'),
)
# Password reset
--
cgit