forked from github/plane
8 lines
164 B
Python
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'))
|
|
|
|
]
|