From 442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409 Mon Sep 17 00:00:00 2001
From: Anoop Jacob Thomas
Date: Fri, 29 Oct 2010 19:59:03 +0530
Subject: added organizers page.
---
project/templates/_menu.html | 1 +
project/templates/about/organizers.html | 136 ++++++++++++++++++++++++++++++++
project/urls.py | 3 +
3 files changed, 140 insertions(+)
create mode 100644 project/templates/about/organizers.html
diff --git a/project/templates/_menu.html b/project/templates/_menu.html
index 1ab3ced..7bc94f9 100644
--- a/project/templates/_menu.html
+++ b/project/templates/_menu.html
@@ -70,6 +70,7 @@
Publicity
+ Organizers
{% if user.is_staff %}
HowTo
{% endif %}
diff --git a/project/templates/about/organizers.html b/project/templates/about/organizers.html
new file mode 100644
index 0000000..2eaa083
--- /dev/null
+++ b/project/templates/about/organizers.html
@@ -0,0 +1,136 @@
+{% extends "base.html" %}
+{% block content %}
+
+SciPy.in Committee
+
+
+Executive Committee
+
+
+Conference Co-Chairs
+
+
+-
+Prabhu Ramachandran, IIT Bombay
+
+-
+Jarrod Millman, UC Berkeley
+
+
+
+Program Committee
+
+
+-
+Prabhu Ramachandran,
+Department of Aerospace Engineering,
+IIT Bombay
+
+-
+Jarrod Millman,
+Neuroscience Institute,
+UC Berkeley
+
+-
+Fernando Perez,
+Neuroscience Institute,
+UC Berkeley
+
+-
+John Hunter,
+TradeLink Securities
+
+-
+Stéfan van der Walt,
+Division of Applied Mathematics,
+Stellenbosch University
+
+-
+Puneeth Chaganti,
+FOSSEE, IIT Bombay
+
+-
+Kadambari Devarajan,
+FOSSEE, IIT Bombay
+
+
+
+Local Organizers
+
+FOSSEE
+
+
+-
+Prabhu Ramachandran (co-chair)
+
+-
+Anoop Jacob Thomas
+
+-
+Amit Singh Sethi
+
+-
+Anand Raj Ramachandran
+
+-
+Bhanukiran Perbhatini
+
+-
+Kadambari Devarajan
+
+-
+Madhusudan C S
+
+-
+Nishanth Amuluru
+
+-
+Puneeth Chaganti
+
+-
+Thomas Stephen Lee
+
+
+
+
+IIIT Hyderabad
+
+
+-
+Sandhya Kode (co-chair)
+
+-
+Venkatesh Choppella
+
+-
+Sunanda Varma
+
+-
+Vamsi Pullakavi
+
+-
+General R K Bagga
+
+
+
+
+Program Staff
+
+
+-
+Deepak Kharat
+
+-
+Vishal Birare
+
+
+
+Graphic Design
+
+
+-
+Kamaleshwar Morjal
+
+
+
+{% endblock content %}
diff --git a/project/urls.py b/project/urls.py
index 2ea7a1d..599ec56 100644
--- a/project/urls.py
+++ b/project/urls.py
@@ -119,6 +119,9 @@ urlpatterns += patterns('',
url(r'^%s/about/fees/$' % (SCOPE_ARG_PATTERN),
direct_to_template, {"template": "about/fees.html"},
name='scipycon_fees'),
+ url(r'^%s/organizers/$' % (SCOPE_ARG_PATTERN),
+ direct_to_template, {"template": "about/organizers.html"},
+ name='scipycon_organizers'),
)
--
cgit