Files @ 637921628e6f
Branch filter:

Location: symposion_app/symposion_project/apps/cms/views.py

Luke Hatcher
Merge branch 'fresh-start' into cms-features

* fresh-start:
update theme
fixed coding convention nits
internationalized the sponsor model fields
Makes conference app fields and models localizable
added documentation for conference models
made sponsorship app conference-aware
initial documentation of sponsorship app
added sponsorship template tags and template fragments; improved admin
fixed incorrect module name in import
initial sponsorship app adapted from DjangoCon

Conflicts:
symposion_project/requirements/base.txt
symposion_project/settings.py
from django.shortcuts import render_to_response
from django.template import RequestContext

from cms.models import Page


def page(request, slug):
    
    page = Page.objects.get(path=slug)
    
    return render_to_response("cms/page_detail.html", {
        "page": page,
    }, context_instance=RequestContext(request))