# HG changeset patch # User Anoop Jacob Thomas # Date 1288362543 -19800 # Node ID 7071ab9a6703a9fd693c2ef613053aa5f3efc47d # Parent 889a396bf8b93a3b1f211dfab8167e85a37c5028 added organizers page. diff -r 889a396bf8b9 -r 7071ab9a6703 project/templates/_menu.html --- 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 @@
  • Publicity
  • +
  • Organizers
  • {% if user.is_staff %}
  • HowTo
  • {% endif %} diff -r 889a396bf8b9 -r 7071ab9a6703 project/templates/about/organizers.html --- /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 %} + +

    SciPy.in Committee

    + + +

    Executive Committee

    + + +

    Conference Co-Chairs

    + + + +

    Program Committee

    + + +

    Local Organizers

    + +

    FOSSEE

    + + + +

    IIIT Hyderabad

    + + + +

    Program Staff

    + + + +

    Graphic Design

    + + + +{% endblock content %} diff -r 889a396bf8b9 -r 7071ab9a6703 project/urls.py --- 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'), )