mirror of
https://github.com/YunoHost-Apps/django_example_ynh.git
synced 2024-09-03 18:26:21 +02:00
12 lines
363 B
Python
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),
|
|
]
|