diff options
author | Anoop Jacob Thomas | 2010-10-29 19:59:03 +0530 |
---|---|---|
committer | Anoop Jacob Thomas | 2010-10-29 19:59:03 +0530 |
commit | 442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409 (patch) | |
tree | a9ba5cc0dd66fea26158d2a80a8dcc56b483d9d5 | |
parent | 9ab88df8caae0aa590b6eb52a102fc2475e54da2 (diff) | |
download | scipycon-442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409.tar.gz scipycon-442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409.tar.bz2 scipycon-442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409.zip |
added organizers page.
-rw-r--r-- | project/templates/_menu.html | 1 | ||||
-rw-r--r-- | project/templates/about/organizers.html | 136 | ||||
-rw-r--r-- | project/urls.py | 3 |
3 files changed, 140 insertions, 0 deletions
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 @@ </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 %} 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 %} + +<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 %} 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'), ) |