4 lines
112 B
Python
Executable file
4 lines
112 B
Python
Executable file
from django.shortcuts import render_to_response
|
|
|
|
def index(request):
|
|
return render_to_response('main.html')
|