mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-25 15:34:43 +00:00
6 lines
179 B
Python
6 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'),
|
|
]
|