diff options
author | Kadambari Devarajan | 2010-11-26 19:28:20 +0530 |
---|---|---|
committer | Kadambari Devarajan | 2010-11-26 19:28:20 +0530 |
commit | 28b067baf91b73a9a03734e81b9898bb02dbe2ec (patch) | |
tree | 5a5a25bba15f0b273b1f294ee56d15810b678ee5 | |
parent | a1aab14d85c1af70882c292a0b7a73ca7b00ab1b (diff) | |
download | scipycon-28b067baf91b73a9a03734e81b9898bb02dbe2ec.tar.gz scipycon-28b067baf91b73a9a03734e81b9898bb02dbe2ec.tar.bz2 scipycon-28b067baf91b73a9a03734e81b9898bb02dbe2ec.zip |
Add a page for Important dates and all the boiler plate. Edit and improve the main page content.
-rw-r--r-- | project/static/css/styles.css | 4 | ||||
-rw-r--r-- | project/templates/_menu.html | 9 | ||||
-rw-r--r-- | project/templates/_right_menu.html | 10 | ||||
-rw-r--r-- | project/templates/base.html | 2 | ||||
-rw-r--r-- | project/templates/home.html | 25 | ||||
-rw-r--r-- | project/urls.py | 4 |
6 files changed, 24 insertions, 30 deletions
diff --git a/project/static/css/styles.css b/project/static/css/styles.css index e112047..20d4891 100644 --- a/project/static/css/styles.css +++ b/project/static/css/styles.css @@ -588,4 +588,8 @@ ol li { label.alert { font-size: 1.2em; color: #ff0000; +} + +ul.entry { + font-size: 1.2em; }
\ No newline at end of file diff --git a/project/templates/_menu.html b/project/templates/_menu.html index f2932ad..126b34a 100644 --- a/project/templates/_menu.html +++ b/project/templates/_menu.html @@ -4,12 +4,15 @@ <li><a href="/{{ params.scope }}/submit-registration/">Registration</a></li> <li> <ul> - <li> - <a href="/{{ params.scope }}/about/fees/">Fees</a> - </li> + <li> + <a href="/{{ params.scope }}/about/fees/">Fees</a> + </li> </ul> </li> <li> + <a href="/{{ params.scope }}/about/dates/">Important Dates</a> + </li> + <li> Conference & CfP <ul> <li> diff --git a/project/templates/_right_menu.html b/project/templates/_right_menu.html index dba7c2d..ccd3afe 100644 --- a/project/templates/_right_menu.html +++ b/project/templates/_right_menu.html @@ -1,14 +1,4 @@ <div id="right-inner"> - <h2>Important dates</h2> - <p><ul> - <li>Wednesday, Nov. 10: Abstracts Due</li> - <li>Monday, Nov. 15: Schedule announced - <li>Sunday, Dec. 05: Proceedings paper submission due - <li>Monday-Tuesday, Dec. 13-14: Conference - <li>Wednesday-Friday, Dec. 15-17: Tutorials/Sprints - <li>Saturday, Dec. 18: Sprints - </ul></p> - <h2>Organizers</h2> <p><ul> <li><a href='http://www.jarrodmillman.com/'>Jarrod Millman</a>, Neuroscience Institute, UC Berkeley (USA)(Conference Co-Chair)</li> diff --git a/project/templates/base.html b/project/templates/base.html index fc5e057..1407bd0 100644 --- a/project/templates/base.html +++ b/project/templates/base.html @@ -29,7 +29,7 @@ <div id="header"> <h1>{% block header %}SciPy.in 2010</h1> - <h3>December 13 - 18, IIIT-Hyderabad, India{% endblock %}</h3> + <h3>December 13 - 18, Hyderabad, India{% endblock %}</h3> {% include '_menu_user.html' %} </div> diff --git a/project/templates/home.html b/project/templates/home.html index f757810..ebe7cab 100644 --- a/project/templates/home.html +++ b/project/templates/home.html @@ -47,21 +47,16 @@ Computing.</p> spread the use of the Python programming language in the Scientific Computing community in India. It provides a unique opportunity to interact with the "Who's who" of the Python for Scientific Computing fraternity and learn, -understand, participate and contribute what is happening in the realms of -Scientific Computing using Python. Attendees of the conference and participants -of the sprints planned will be able to access and review the tools available, -apart from learning domain-specific applications and how the tools apply to a -plethora of application problems.<br></p> - - <p>One of the goals of the conference is to combine education, engineering and -science with computing through the medium of Python and thereby extrapolate on -how powerful Scientific Computing is in various fields and among different -communities. +understand, participate, and contribute to Scientific Computing using Python. +Attendees of the conference and participants of the sprints planned will be +able to access and review the tools available. They will also be able to +learn domain-specific applications and how the tools apply to a plethora +of application problems.<br></p> + + <p>One of the goals of the conference is to combine education, engineering, +and science with computing through the medium of Python. This conference also +aims to spread the use of Python for Scientific Computing in various fields +and among different communities. </p> </div> -<h1>Theme</h1>
-<div class="entry">
- <p>Theme for Conference talks - <strong>"Scientific Python in Action"</strong> -with respect to Application and Teaching</p>
-</div> {% endblock content %} diff --git a/project/urls.py b/project/urls.py index 9d1530e..548897b 100644 --- a/project/urls.py +++ b/project/urls.py @@ -140,7 +140,9 @@ urlpatterns += patterns('', url(r'^%s/certificates/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "about/certificates.html"}, name='scipycon_certificates'), - + url(r'^%s/about/dates/$' % (SCOPE_ARG_PATTERN), + direct_to_template, {"template": "about/important_dates.html"}, + name='scipycon_imp_dates'), ) # Password reset |