diff options
author | Madhusudan.C.S | 2009-10-30 15:09:12 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2009-10-30 15:09:12 +0530 |
commit | f89410559c20dd88d78ccd6b9d24e7941da9d5ff (patch) | |
tree | 3ad4fb64efc7523d1f3065e0dd03693871d6ce55 /project/kiwipycon/sponsor/views.py | |
parent | 75f0773685ef0724d8ccc1eb1aab16bba55cd7a7 (diff) | |
download | scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.tar.gz scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.tar.bz2 scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.zip |
Added all the files from kiwipycon and the changes made for SciPy.in.
Diffstat (limited to 'project/kiwipycon/sponsor/views.py')
-rw-r--r-- | project/kiwipycon/sponsor/views.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/project/kiwipycon/sponsor/views.py b/project/kiwipycon/sponsor/views.py new file mode 100644 index 0000000..a6f5ad2 --- /dev/null +++ b/project/kiwipycon/sponsor/views.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- +from __future__ import absolute_import + +# django +from django.conf import settings +from django.shortcuts import render_to_response +from django.template import RequestContext + +def schwag_sponsors(request, + template_name = 'sponsor/schwag.html'): + """Simple page to display schwag sponsors + + The list is generated in kiwipycon.context_processors + """ + return render_to_response(template_name, RequestContext(request, + {})) + |