mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-03 15:34:00 +00:00
7 lines
236 B
Python
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
|