diff -r 9a77edda77b7 -r fda1c66b25f9 project/kiwipycon/sponsor/views.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/kiwipycon/sponsor/views.py Fri Oct 30 15:09:12 2009 +0530 @@ -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, + {})) +