Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
holoviz
GitHub Repository: holoviz/panel
Path: blob/main/examples/apps/django_multi_apps/landing/views.py
2014 views
1
from django.shortcuts import render
2
3
4
# Create your views here.
5
def landing(request):
6
return render(request, "landing/landing.html")
7
8