added organizers page.
authorAnoop Jacob Thomas<anoop@fossee.in>
Fri, 29 Oct 2010 19:59:03 +0530
changeset 185 7071ab9a6703
parent 184 889a396bf8b9
child 187 49b1ec16f6ab
added organizers page.
project/templates/_menu.html
project/templates/about/organizers.html
project/urls.py
--- a/project/templates/_menu.html	Fri Oct 29 19:50:58 2010 +0530
+++ b/project/templates/_menu.html	Fri Oct 29 19:59:03 2010 +0530
@@ -70,6 +70,7 @@
       </ul>
     </li>
     <li><a href="/{{ params.scope }}/publicity/">Publicity</a></li>
+    <li><a href="/{{ params.scope }}/organizers/">Organizers</a></li>
     {% if user.is_staff %}
     <li><a href="/{{ params.scope }}/howto/">HowTo</a></li>
     {% endif %}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/templates/about/organizers.html	Fri Oct 29 19:59:03 2010 +0530
@@ -0,0 +1,136 @@
+{% extends "base.html" %}
+{% block content %}
+
+<h1 class="title">SciPy.in Committee</h1>
+
+
+<h3 id="sec-1_1">Executive Committee </h3>
+
+
+<h4 id="sec-1_1_1">Conference Co-Chairs </h4>
+
+<ul>
+<li>
+Prabhu Ramachandran, IIT Bombay
+</li>
+<li>
+Jarrod Millman, UC Berkeley
+</li>
+</ul>
+
+<h3 id="sec-1_2">Program Committee </h3>
+
+<ul>
+<li>
+Prabhu Ramachandran,
+Department of Aerospace Engineering,
+IIT Bombay
+</li>
+<li>
+Jarrod Millman,
+Neuroscience Institute,
+UC Berkeley
+</li>
+<li>
+Fernando Perez,
+Neuroscience Institute,
+UC Berkeley
+</li>
+<li>
+John Hunter,
+TradeLink Securities
+</li>
+<li>
+Stéfan van der Walt,
+Division of Applied Mathematics,
+Stellenbosch University
+</li>
+<li>
+Puneeth Chaganti,
+FOSSEE, IIT Bombay
+</li>
+<li>
+Kadambari Devarajan,
+FOSSEE, IIT Bombay
+
+</li>
+</ul>
+<h3 id="sec-1_3">Local Organizers </h3>
+
+<h4 id="sec-1_3_1">FOSSEE </h4>
+
+<ul>
+<li>
+Prabhu Ramachandran (co-chair)
+</li>
+<li>
+Anoop Jacob Thomas
+</li>
+<li>
+Amit Singh Sethi
+</li>
+<li>
+Anand Raj Ramachandran
+</li>
+<li>
+Bhanukiran Perbhatini
+</li>
+<li>
+Kadambari Devarajan
+</li>
+<li>
+Madhusudan C S
+</li>
+<li>
+Nishanth Amuluru
+</li>
+<li>
+Puneeth Chaganti
+</li>
+<li>
+Thomas Stephen Lee
+
+</li>
+</ul>
+
+<h4 id="sec-1_3_2">IIIT Hyderabad </h4>
+
+<ul>
+<li>
+Sandhya Kode (co-chair)
+</li>
+<li>
+Venkatesh Choppella
+</li>
+<li>
+Sunanda Varma
+</li>
+<li>
+Vamsi Pullakavi
+</li>
+<li>
+General R K Bagga
+
+</li>
+</ul>
+
+<h3 id="sec-1_4">Program Staff </h3>
+
+<ul>
+<li>
+Deepak Kharat
+</li>
+<li>
+Vishal Birare
+</li>
+</ul>
+
+<h3 id="sec-1_5">Graphic Design </h3>
+
+<ul>
+<li>
+Kamaleshwar Morjal
+</li>
+</ul>
+
+{% endblock content %}
--- a/project/urls.py	Fri Oct 29 19:50:58 2010 +0530
+++ b/project/urls.py	Fri Oct 29 19:59:03 2010 +0530
@@ -119,6 +119,9 @@
     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'),
 
     )