Files
dss/spa/views.py
2012-08-20 22:00:13 +01:00

7 lines
236 B
Python

from django.shortcuts import render_to_response
from django.template.context import RequestContext
def app(request):
response = render_to_response("inc/app.html", context_instance=RequestContext(request))
return response