Speaker Info 2011
authorprimal primal007@gmail.com
Sat, 03 Dec 2011 19:16:11 +0530
branch2011
changeset 486 ea923104766c
parent 485 1f3fc0de016e
child 487 f8d994c3d48d
Speaker Info
project/templates/_menu.html
project/templates/_right_menu.html
project/templates/about/speakerinfo.html
project/templates/about/tutorial.html
project/urls.py
--- a/project/templates/_menu.html	Sat Dec 03 18:15:15 2011 +0530
+++ b/project/templates/_menu.html	Sat Dec 03 19:16:11 2011 +0530
@@ -105,7 +105,8 @@
   </ul>
 <li>
 <ul>
-<li>Live Blog Entries</li>
+<li>Live Blog</li>
+<li><a href="/{{ params.scope }}/about/speakerinfo/">Speaker Info</a></li>
 <li><a href="/{{ params.scope }}/about/day0/">Day 0</a></li>
 <!--<li><a href="/{{ params.scope }}/about/day1/">Day 1</a></li> --!>
 <!--<li><a href="/{{ params.scope }}/about/day1/">Day 2</a></li> --!>
--- a/project/templates/_right_menu.html	Sat Dec 03 18:15:15 2011 +0530
+++ b/project/templates/_right_menu.html	Sat Dec 03 19:16:11 2011 +0530
@@ -1,13 +1,14 @@
 <div style=" border: 1px black solid;">
 <h2 style="padding-left:2px;">News and Updates</h2>
 <ul>
-<li>Please contact our Kiosk setup at IIT-Bombay main gate for accomodation and any other details.</li>
+<li>Please contact our <b>Kiosk setup at IIT-Bombay main gate</b> for accommodation and any other details.</li>
 <li><a href="/scipyin/2011/talks-cfp/conference/">Updated Conference Schedule</a></li>
+<li><a href=""/scipyin/2011/talks-cfp/conference/">Important Information for Speaker</a></li>
 <hr/>
- <i>Documents</i> of Aid
+<h3 style="padding-left:2px;"> Documents of Aid</h3>
 <li> <a href="/static/files/Reaching_IITB.pdf">This</a> can help you in Reaching IITB.</li>
 <li> <a href="/static/files/Inside_IITB.pdf">Marauders Map</a></li>
-<li> <a href="/static/files/Other_Facilities.pdf">This</a> might come handy once you are inside.</li>
+<li> <a href="/static/files/Other_Facilities.pdf">This</a> might be handy once you are inside.</li>
 </ul>
 </div>
 <div id="right-inner">
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/templates/about/speakerinfo.html	Sat Dec 03 19:16:11 2011 +0530
@@ -0,0 +1,41 @@
+{% extends "base.html" %}
+{% block content %}
+<div class="entry">
+
+<h3>If you are a speaker at SciPy India 2011, here are a few tips that might be handy.</h3>
+
+<br/>
+<p>
+<b>Session Setup</b><br/>
+Please arrive at the venue(VMCC Hall) at least 30 minutes in advance to prepare for the talk. This may also help you to get a feel of the venue and the audience.
+</p>
+
+<p>
+<b>Plan B</b><br/>
+All participants will be provided Wi-Fi access. But you are requested to have a Plan B for Internet, in case things go wrong; which usually happens at every conferences. We don't want this to disrupt your talk.
+</p>
+
+<p>
+<b>Timing is Everything</b><br/>
+Please have a final look at the <a href="/scipyin/2011/talks-cfp/conference/">schedule</a> and make sure of the length of your talk. We would suggest you to keep a buffer of at least 3 mins for Q & A from the audience. Make sure that you don't run out of the allotted time. If you need reminders, Volunteers can aid you.
+</p>
+
+<p>
+<b>Help Abounds</b><br/>
+Need help? Look out for the friendly organizers or folks(who would be wearing a blue tag) for any assistance. Just contact Kiran Kishore(07702455566) or Parth Buch(9619606610) if you don't find anyone immediately.
+</p>
+
+<p>
+<b>Rehearse, Rehearse, Rehearse! </b><br/>
+We know this goes without saying, reiterating this step would help in more ways than imagineable.
+</p>
+
+<p>
+Looking forward to seeing to you at the conference.
+</p>
+
+<p>
+<i>Snake Charmer<i/>
+</p>
+</div>
+{% endblock content %}
--- a/project/templates/about/tutorial.html	Sat Dec 03 18:15:15 2011 +0530
+++ b/project/templates/about/tutorial.html	Sat Dec 03 19:16:11 2011 +0530
@@ -195,7 +195,7 @@
 	</li>
 </ul>
 
-<h3 id="sec2.5">Ole Nielsen: Mapping and Geoprocessing with Python (2 hrs)</h3>
+<h3 id="sec2.5">Ole Nielsen: Mapping and Geoprocessing with Python (1 hr)</h3>
 <ul>
 	<li>
 	Putting information on a map and analyzing spatial data are fundamental to a
--- a/project/urls.py	Sat Dec 03 18:15:15 2011 +0530
+++ b/project/urls.py	Sat Dec 03 19:16:11 2011 +0530
@@ -114,6 +114,12 @@
     url(r'^%s/about/contact/$' % (SCOPE_ARG_PATTERN),
         direct_to_template, {"template": "about/contact.html"},
         name='scipycon_contact'),
+    url(r'^%s/about/contact/$' % (SCOPE_ARG_PATTERN),
+        direct_to_template, {"template": "about/day0.html"},
+        name='scipycon_contact'),
+    url(r'^%s/about/speakerinfo/$' % (SCOPE_ARG_PATTERN),
+        direct_to_template, {"template": "about/speakerinfo.html"},
+        name='scipycon_contact'),        
     url(r'^%s/about/city/$' % (SCOPE_ARG_PATTERN),
         direct_to_template, {"template": "about/city.html"},
         name='scipycon_city'),