# HG changeset patch # User Madhusudan.C.S # Date 1293402101 -19800 # Node ID 7ea06f159d152a665ea9e461327e4e6f7ee1a3e2 # Parent 704af5be5fb99e2d8afa17846c795e9aefd96936 Add the slides from the Conference and Tutorials to the new section. diff -r 704af5be5fb9 -r 7ea06f159d15 project/scipycon/talk/views.py --- a/project/scipycon/talk/views.py Fri Dec 24 16:02:21 2010 +0530 +++ b/project/scipycon/talk/views.py Mon Dec 27 03:51:41 2010 +0530 @@ -205,3 +205,12 @@ 'params': {'scope': scope}, 'talk_list': talks, })) + +def download_slides(request, scope): + """View that lets users allow to download the slides they want. + """ + + template_name = 'talk/download-slides.html' + return render_to_response(template_name, RequestContext(request, { + 'params': {'scope': scope}, + })) diff -r 704af5be5fb9 -r 7ea06f159d15 project/static/files/conference-talks.zip Binary file project/static/files/conference-talks.zip has changed diff -r 704af5be5fb9 -r 7ea06f159d15 project/static/files/tutorials.zip Binary file project/static/files/tutorials.zip has changed diff -r 704af5be5fb9 -r 7ea06f159d15 project/templates/_menu.html --- a/project/templates/_menu.html Fri Dec 24 16:02:21 2010 +0530 +++ b/project/templates/_menu.html Mon Dec 27 03:51:41 2010 +0530 @@ -1,6 +1,11 @@