5 lines
149 B
Python
5 lines
149 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
def index(request, *args, **kwargs):
|
|
return render(request, "frontend/index.html") |