# HG changeset patch # User nishanth # Date 1279610980 -19800 # Node ID a752dc99e23c8ac791eed849e109dd5f0b7610ea # Parent 8b366ff5fef1b6138e298d0f2cdf265094aa5fb6 added link to sprint_info and created a basic template diff -r 8b366ff5fef1 -r a752dc99e23c sdi/views.py --- a/sdi/views.py Tue Jul 20 12:53:12 2010 +0530 +++ b/sdi/views.py Tue Jul 20 12:59:40 2010 +0530 @@ -299,3 +299,9 @@ def talks_proposed(request): return render_to_response("talks_proposed.html") + +def sprint_info(request): + """ display info on what a sprint is. + """ + + render_to_response("sprint_info.html") diff -r 8b366ff5fef1 -r a752dc99e23c templates/sprint_info.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/sprint_info.html Tue Jul 20 12:59:40 2010 +0530 @@ -0,0 +1,6 @@ +{% extends 'base.html' %} +{% block title %} +What is a Sprint +{% endblock %} +{% block content %} +{% endblock %} diff -r 8b366ff5fef1 -r a752dc99e23c urls.py --- a/urls.py Tue Jul 20 12:53:12 2010 +0530 +++ b/urls.py Tue Jul 20 12:59:40 2010 +0530 @@ -5,7 +5,7 @@ admin.autodiscover() from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about -from sage_days.sdi.views import accomodation, about_mumbai, reaching_iitb, talks_proposed +from sage_days.sdi.views import accomodation, about_mumbai, reaching_iitb, talks_proposed, sprint_info from sage_days.settings import APACHE_URL_PREFIX as aup urlpatterns = patterns('', @@ -30,4 +30,5 @@ (r'^about_mumbai/',about_mumbai), (r'^reaching_iitb/',reaching_iitb), (r'^talks_proposed/',talks_proposed), + (r'^what_is_sprint/', sprint_info), )