6 lines
130 B
Python
6 lines
130 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
# Create your views here.
|
||
|
|
||
|
def search(request):
|
||
|
return render(request, 'search.html', {})
|