plane/apiserver/plane/web/urls.py

7 lines
163 B
Python

from django.urls import path
from django.views.generic import TemplateView
urlpatterns = [
path("about/", TemplateView.as_view(template_name="about.html"))
]