diff options
author | Madhusudan.C.S | 2009-11-05 14:19:47 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2009-11-05 14:19:47 +0530 |
commit | 864552efcb99f0975caf5e460913fd2a4bbc8615 (patch) | |
tree | d0a4ced7ca0357a08a6f2746f6074af093989859 | |
parent | 7e5241f620b08eb9feb73bda52983b662ffaaa35 (diff) | |
download | scipycon-864552efcb99f0975caf5e460913fd2a4bbc8615.tar.gz scipycon-864552efcb99f0975caf5e460913fd2a4bbc8615.tar.bz2 scipycon-864552efcb99f0975caf5e460913fd2a4bbc8615.zip |
Added home page in urls.py and its template. Also added important dates.
-rw-r--r-- | project/templates/_sponsors.html | 29 | ||||
-rw-r--r-- | project/urls.py | 4 |
2 files changed, 22 insertions, 11 deletions
diff --git a/project/templates/_sponsors.html b/project/templates/_sponsors.html index 1f2b0ce..68c6190 100644 --- a/project/templates/_sponsors.html +++ b/project/templates/_sponsors.html @@ -1,14 +1,23 @@ <div id="right-inner"> + <h2>Important dates</h2> + <p><ul> + <li>Friday, Nov. 20: Abstracts Due</li> + <li>Friday, Nov. 27: Announce accepted talks, post schedule</li> + <li>Saturday-Sunday, Dec. 12-13 Conference</li> + <li>Monday-Tuesday, Dec. 14-15 Tutorials</li> + <li>Wednesday-Thursday, Dec. 16-17 Sprints</li> + </ul></p> + <h2>Organizers</h2> -<p><ul> - <li>(co-chair) <a href='http://www.jarrodmillman.com/'>Jarrod Millman</a>, Neuroscience Institute, UC Berkeley (USA)</li> - <li>(co-chair) <a href='http://www.aero.iitb.ac.in/~prabhu'>Prabhu Ramachandran</a>, Department of Aerospace Engineering, + <p><ul> + <li>(co-chair) <a href='http://www.jarrodmillman.com/'>Jarrod Millman</a>, Neuroscience Institute, UC Berkeley (USA)</li> + <li>(co-chair) <a href='http://www.aero.iitb.ac.in/~prabhu'>Prabhu Ramachandran</a>, Department of Aerospace Engineering, IIT Bombay (India)</li> - <li><a href="http://www.ignouonline.ac.in/sakshat/">National Mission On Education through ICT</a> - Ministry of Human Resource Development, Govt. of India</li> - <li><a href='http://fossee.in/'>FOSSEE Team</a></li> - <li><a href='http://space-kerala.org/'>SPACE-Kerala (India)</a></li> - <li><a href='http://www.itmission.kerala.gov.in'>Kerala State IT Mission(KSITM)</a></li> - <li><a href='http://csi-india.org'>SIG-FOSS Of CSI</a></li> -</ul></p> - + <li><a href="http://www.ignouonline.ac.in/sakshat/">National Mission On Education through ICT</a> - Ministry of Human Resource Development, Govt. of India</li> + <li><a href='http://fossee.in/'>FOSSEE Team</a></li> + <li><a href='http://space-kerala.org/'>SPACE-Kerala (India)</a></li> + <li><a href='http://www.itmission.kerala.gov.in'>Kerala State IT Mission(KSITM)</a></li> + <li><a href='http://csi-india.org'>SIG-FOSS Of CSI</a></li> + </ul></p> + </div> diff --git a/project/urls.py b/project/urls.py index 7459181..328e976 100644 --- a/project/urls.py +++ b/project/urls.py @@ -18,7 +18,9 @@ admin.autodiscover() # Blog & Admin urlpatterns = patterns( '', - (r'', include('basic.blog.urls')), + url(r'', + direct_to_template, {"template": "home.html"}, + name='home'), (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), (r'^comments/', include('django.contrib.comments.urls')), (r'^admin/(.*)', admin.site.root), |