7 lines
125 B
Python
7 lines
125 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request):
|
|
context = {}
|
|
return render(request, 'index.html', context)
|