10 lines
269 B
Python
Executable file
10 lines
269 B
Python
Executable file
# Create your views here.
|
|
from django.shortcuts import render_to_response
|
|
from ox.django.shortcuts import render_to_json_response
|
|
|
|
def index(request):
|
|
return render_to_response("home.html", {})
|
|
|
|
def search(request):
|
|
d = {}
|
|
return render_to_json_response(d)
|