1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/django_example_ynh.git synced 2024-09-03 18:26:21 +02:00
django_example_ynh/example_project/urls.py
2022-10-05 20:01:56 +02:00

12 lines
363 B
Python

from bx_django_utils.admin_extra_views.registry import extra_view_registry
from django.contrib import admin
from django.urls import include, path
from example_project.views import DebugView
urlpatterns = [
path('', DebugView.as_view(), name='debug-view'),
path('admin/', include(extra_view_registry.get_urls())),
path('admin/', admin.site.urls),
]