+
+ Time
+ | Speaker
+ | Detail
+ |
+ 8:30 - 9:00 | Registration
+ |
+
+ 9:00 - 9:10 | Prabhu Ramachandran | Welcome & Introduction
+ |
+
+ 9:10 - 9:30 | Anirudh Wodeyar | BrainTone - Listening to Brain Waves in Real Time
+ |
+
+ 9:30 - 9:45 | Kuppurasu Nagaraj | PCEHR: Python Cloud based an Electronic Health Record (EHR)
+ |
+
+ 9:30 - 10:00 | | Madhu Sharma | Python based implementation of a secret sharing scheme
+ |
+
+ 10:30 - 11:00 | Ondrej Certik | Keynote
+ |
+
+ 11:00 - 11:30 | Tea break
+ |
+
+ 11:30 - 11:50 | Ambuja Salgaonkar | CHANGE MANAGEMENT WHILE INTRODUCING PYTHON IN THE FORMAL CURRICULA
+ |
+
+ 11:50 - 12:05 | Vishwanath Dalvi | Automating routing administrative tasks with PyWin32
+ |
+
+ 12:05 - 12:25 | Arulalan T | A Python Based Framework for Systematic Weather Model Diagnosis
+ |
+
+ 12:25 - 12:40 | Sachi Patil | Python + Emacs in scientific computing
+ |
+
+ 12:40 - 13:00 | Pankaj Kumar | SudokuFinder : Solving the 17 clue Sudoku challenge
+ |
+
+ 13:00 - 14:00 | Lunch
+ |
+
+ 14:40 - 14:50 | Ajith Kumar | expEYES
+ |
+
+ 14:50 - 15:10 | Jaidev Deshpande | Compressive Sensing Solvers in Python
+ |
+
+ 15:10 - 15:25 | Kiran Kadam | PIV Image Processing using Python
+ |
+
+ 15:25 - 15:40 | Samarth Shah | Image Processing using Microsoft Kinect and Python
+ |
+
+ 15:40 - 16:00 | Tirthankar Chakravarty | dCrypt: A novel text categorization and classification system
+ |
+
+ 16:00 - 16:30 | Tea Break
+ |
+
+ 16:30 - 16:50 | Hardik Ghaghada | Python Textbook Companion Project & Insights of FOSSEE
+ |
+
+ 16:50 - 17:30 | 6 Speakers | Pecha Kucha Session
+ |
+
+ 17:50 - 17:45 | Guest Speaker (depends on Availability)
+ |
+
+ 17:45 - 18:00 | Guest Speaker (depends on Availability)
+ |
+
+ End of DAY 3
+ |
+
{% endblock %}
diff --git a/website/views.py b/website/views.py
index ecafaaa..32060d5 100644
--- a/website/views.py
+++ b/website/views.py
@@ -36,7 +36,10 @@ def call_for_papers_page(request):
# Conference Section
def schedule_page(request):
- return render_to_response('schedule.html')
+ context = {}
+ papers = Paper.objects.filter(verified=True)
+ context['papers'] = papers
+ return render_to_response('schedule.html', context)
def invited_speakers_page(request):
return render_to_response('invited_speakers.html')
--
cgit