5 lines
112 B
Python
5 lines
112 B
Python
from django.shortcuts import render
|
|
|
|
def landing_view(request):
|
|
return render(request, 'landing/home.html')
|