6 lines
106 B
Python
6 lines
106 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def home(request):
|
|
return render(request, "frontend/home.html")
|