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