mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-04 07:54:29 +00:00
11 lines
331 B
Python
Executable File
11 lines
331 B
Python
Executable File
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))
|
|
|
|
|