7 lines
162 B
Python
7 lines
162 B
Python
|
from django.shortcuts import render
|
||
|
|
||
|
# Create your views here.
|
||
|
def index(request):
|
||
|
template_name = 'index.html'
|
||
|
|
||
|
return render(request, template_name, {})
|