project/kiwipycon/sponsor/views.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 05 Nov 2009 03:48:50 +0530
changeset 10 6bb24e2e6d9c
parent 1 fda1c66b25f9
permissions -rw-r--r--
Changed Jarrod's link with his name in the organizers section.

# -*- 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,
        {}))