added talks proposed page. anoop
authoranoop
Wed, 14 Jul 2010 21:04:12 +0530
branchanoop
changeset 91 9fab907060a7
parent 85 c62a1f9ef609
child 92 9f305face605
added talks proposed page.
sdi/views.py
templates/base.html
templates/talks_proposed.html
urls.py
--- a/sdi/views.py	Wed Jul 14 19:43:07 2010 +0530
+++ b/sdi/views.py	Wed Jul 14 21:04:12 2010 +0530
@@ -143,28 +143,31 @@
     return render_to_response("logout.html")
 
 def homepage(request):
-        return render_to_response("index.html")
+    return render_to_response("index.html")
 
 def schedule(request):
-	return render_to_response("schedule.html")
+    return render_to_response("schedule.html")
 
 def organizers(request):
-	return render_to_response("organizers.html")
+    return render_to_response("organizers.html")
 
 def venue(request):
-	return render_to_response("about_venue.html")
+    return render_to_response("about_venue.html")
 
 def contact(request):
-	return render_to_response("contact.html")
+    return render_to_response("contact.html")
 
 def about(request):
-	return render_to_response("about.html")
+    return render_to_response("about.html")
 	
 def accomodation(request):
-	return render_to_response("accomodation.html")
+    return render_to_response("accomodation.html")
 
 def about_mumbai(request):
     return render_to_response("about_mumbai.html")
 
 def reaching_iitb(request):
     return render_to_response("reaching_iitb.html")
+
+def talks_proposed(request):
+    return render_to_response("talks_proposed.html")
--- a/templates/base.html	Wed Jul 14 19:43:07 2010 +0530
+++ b/templates/base.html	Wed Jul 14 21:04:12 2010 +0530
@@ -876,8 +876,8 @@
 title="Conference Registration">Registration</a></li>
 <li class="leaf first"><a href="/sage_days/schedule" title="">Schedule</a></li>
 <!--<li class="leaf"><a href="/sage_days/speakers" title="">Speakers</a></li>-->
-<li class="leaf"><a href="/sage_days/organizers" 
-title="Conference Organizers">Organizers</a></li>
+<li class="leaf"><a href="/sage_days/organizers" title="Conference Organizers">Organizers</a></li>
+<li class="leaf"><a href="/sage_days/talks_proposed" title="Talks Proposed">Talks Proposed</a></li>
 <li class="leaf"><a href="http://wiki.sagemath.org/daysindia25" title="">Sage Days Wiki</a></li>
 <!--<li class="leaf last"><a -->
 <!--href="http://www.fossee.in" -->
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/talks_proposed.html	Wed Jul 14 21:04:12 2010 +0530
@@ -0,0 +1,84 @@
+{% extends 'base.html' %}
+{% block title %}
+Talks Proposed
+{% endblock %}
+{% block content %}
+<h2>Talks Proposed</h2>
+
+<div id="table-of-contents">
+<div id="text-table-of-contents">
+<ul>
+<li><a href="#sec-1">1 Introduction to Sage and the Sage Notebook </a></li>
+<li><a href="#sec-2">2 Running a Sage notebook server </a></li>
+<li><a href="#sec-3">3 Cryptography in Sage </a></li>
+<li><a href="#sec-4">4 SAGE (PARI) for Number Theory </a></li>
+<li><a href="#sec-5">5 SAGE (GAP) for Groups and Representation </a></li>
+<li><a href="#sec-6">6 Number Theory and its Applications to Cryptography </a></li>
+<li><a href="#sec-7">7 Introduction to Python programming </a></li>
+</ul>
+</div>
+</div>
+
+<div id="outline-container-1" class="outline-2">
+<h2 id="sec-1">1 Introduction to Sage and the Sage Notebook </h2>
+<div id="text-1">
+
+<p>Submitted by - Prof. William Stein
+</p></div>
+
+</div>
+
+<div id="outline-container-2" class="outline-2">
+<h2 id="sec-2">2 Running a Sage notebook server </h2>
+<div id="text-2">
+
+<p>Submitted by - Prof. William Stein
+</p></div>
+
+</div>
+
+<div id="outline-container-3" class="outline-2">
+<h2 id="sec-3">3 Cryptography in Sage </h2>
+<div id="text-3">
+
+<p>Submitted by - Sourav Sen Gupta
+</p></div>
+
+</div>
+
+<div id="outline-container-4" class="outline-2">
+<h2 id="sec-4">4 SAGE (PARI) for Number Theory </h2>
+<div id="text-4">
+
+<p>Submitted by - Dr. P. Vanchinatan
+</p></div>
+
+</div>
+
+<div id="outline-container-5" class="outline-2">
+<h2 id="sec-5">5 SAGE (GAP) for Groups and Representation </h2>
+<div id="text-5">
+
+<p>Submitted by - Dr. P. Vanchinatan
+</p></div>
+
+</div>
+
+<div id="outline-container-6" class="outline-2">
+<h2 id="sec-6">6 Number Theory and its Applications to Cryptography </h2>
+<div id="text-6">
+
+<p>Submitted by - Dr. P. Vanchinatan
+</p></div>
+
+</div>
+
+<div id="outline-container-7" class="outline-2">
+<h2 id="sec-7">7 Introduction to Python programming </h2>
+<div id="text-7">
+
+<p>Submitted by - Dr. P. Vanchinatan
+</p></div>
+</div>
+
+{% endblock %}
--- a/urls.py	Wed Jul 14 19:43:07 2010 +0530
+++ b/urls.py	Wed Jul 14 21:04:12 2010 +0530
@@ -4,7 +4,7 @@
 from django.contrib import admin
 admin.autodiscover()
 
-from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about, accomodation, about_mumbai, reaching_iitb
+from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about, accomodation, about_mumbai, reaching_iitb, talks_proposed
 from sage_days.settings import APACHE_URL_PREFIX as aup
 
 urlpatterns = patterns('',
@@ -28,4 +28,5 @@
     (r'^captcha/', include('captcha.urls')),
     (r'^about_mumbai/',about_mumbai),
     (r'^reaching_iitb/',reaching_iitb),
+    (r'^talks_proposed/',talks_proposed),
 )