mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
7 lines
163 B
Python
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"))
|
|
]
|