plane/apiserver/plane/web/urls.py
2022-11-30 02:47:42 +05:30

8 lines
164 B
Python

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