bb-plane-fork/apiserver/plane/web/urls.py
2024-11-21 17:42:44 +05:30

4 lines
157 B
Python

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