mirror of
https://github.com/fergalmoran/dss.git
synced 2026-03-10 15:47:01 +00:00
9 lines
327 B
Python
9 lines
327 B
Python
from django.shortcuts import render_to_response
|
|
from django.template.context import RequestContext
|
|
|
|
def app(request):
|
|
return render_to_response("inc/app.html", context_instance=RequestContext(request))
|
|
|
|
def upload(request):
|
|
return render_to_response("inc/upload.html", context_instance=RequestContext(request))
|