From d26d9bab885e2e55b2bd64de4ec6f041e33513d0 Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Thu, 12 Nov 2009 13:10:27 +0530 Subject: Added speakers section. --- project/templates/_menu.html | 1 + project/templates/talk/speakers.html | 40 ++++++++++++++++++++++++++++++++++++ project/urls.py | 7 +++++-- 3 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 project/templates/talk/speakers.html diff --git a/project/templates/_menu.html b/project/templates/_menu.html index 7f5a9f5..634fb97 100644 --- a/project/templates/_menu.html +++ b/project/templates/_menu.html @@ -6,6 +6,7 @@ Talks & CfP diff --git a/project/templates/talk/speakers.html b/project/templates/talk/speakers.html new file mode 100644 index 0000000..c8267e7 --- /dev/null +++ b/project/templates/talk/speakers.html @@ -0,0 +1,40 @@ +{% extends "base.html" %} +{% block content %} +
+
+

Speakers

+
+
+

The following speakers will be invited.

+

Travis Oliphant (Keynote) - He is the architect of NumPy and author of + the definitive guide to NumPy. He was formerly a member of faculty at + BYU and is currently the Vice-President of Enthought Inc. (USA).

+ +

Fernando Perez - He is the architect of IPython (Interactive Python) + and developer of NiPy (Neuro-Imaging for Python). He is currently with + the Neuroscience Institute, UC Berkeley (USA).

+ +

Jarrod Millman - He is a developer for NiPy and is the director of + computing for UC Berkeley's Neuroscience Institute, where he leads the + Computational Infrastructure for Research Laboratories (CIRL) group.

+ +

Stéfan van der Walt - He is a developer for Scipy and Numpy. He is + currently a Professor of Applied Mathematics at the University of + Stellenbosch (South Africa)

+ +

David Cournapeau - He is a SciPy developer and is currently a PhD + student in Signal Processing at Kyoto University, Japan.

+ +

Gaël Varoquaux - He is a developer of Mayavi and is currently with the + Department of Applied Mathematics and Neuroscience, Neurospin, CEA - + INRIA Saclay (France)

+ +

Prabhu Ramachandran - He is the architect of Mayavi (3D visualization + in Python) and is currently a faculty member at the Department of + Aerospace Engineering, Indian Institute of Technology Bombay, India.

+ +

Asokan Pichai - He is a trainer and mentor for various companies and is + currently a consultant for the FOSSEE project.

+
+
+{% endblock content %} \ No newline at end of file diff --git a/project/urls.py b/project/urls.py index 5994d33..cc3714b 100644 --- a/project/urls.py +++ b/project/urls.py @@ -70,10 +70,13 @@ urlpatterns += patterns('', name='reaching'), url(r'^talks-cfp/$', direct_to_template, {"template": "talk/talks-cfp.html"}, - name='reaching'), + name='talks-cfp'), url(r'^talks-cfp/schedule/$', direct_to_template, {"template": "talk/schedule.html"}, - name='reaching'), + name='schedule'), + url(r'^talks-cfp/speakers/$', + direct_to_template, {"template": "talk/speakers.html"}, + name='speakers'), (r'^accounts/', include('registration.urls')), ) -- cgit