6 lines
116 B
Python
6 lines
116 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request, *args, **kwargs):
|
|
return render(request, "index.html")
|