blob: a6f5ad2bb42f2f083d765eb2c8ee3ac15ff29e5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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,
{}))
|