mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 11:08:21 +00:00
7 lines
179 B
Python
7 lines
179 B
Python
|
|
from django.contrib.flatpages import views
|
||
|
|
from django.urls import path
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('<path:url>', views.flatpage, name='django.contrib.flatpages.views.flatpage'),
|
||
|
|
]
|