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

    + + + +

    Program Committee

    + + +

    Local Organizers

    + +

    FOSSEE

    + + + +

    IIIT Hyderabad

    + + + +

    Program Staff

    + + + +

    Graphic Design

    + + + +{% 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