equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 from __future__ import absolute_import |
|
3 |
|
4 # django |
|
5 from django.conf import settings |
|
6 from django.shortcuts import render_to_response |
|
7 from django.template import RequestContext |
|
8 |
|
9 def schwag_sponsors(request, |
|
10 template_name = 'sponsor/schwag.html'): |
|
11 """Simple page to display schwag sponsors |
|
12 |
|
13 The list is generated in kiwipycon.context_processors |
|
14 """ |
|
15 return render_to_response(template_name, RequestContext(request, |
|
16 {})) |
|
17 |