1
Fork 0

bugfix: urls

This commit is contained in:
Motiejus Jakštys 2024-01-16 23:55:48 +02:00
parent 18ef2f537b
commit c22db9b832
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ from django.conf import settings
urlpatterns = [
path('admin/', admin.site.urls),
] + [
] + ([
path("__debug__/", include("debug_toolbar.urls"))
] if settings.DEBUG else [] + [
] if settings.DEBUG else []) + [
path('', include('signup.urls')),
]