Hey
I've made some project with couples apps and now I'd like to manage by admin site but when I try to open localhost:8000/admin I get error
"""
Django Version: 3.1.6Exception Type:
TypeErrorException Value: 'tuple' object is not a mappingException
Location:/usr/lib/python3.9/site-packages/django/urls/resolvers.py, line 486, in _populate
Python Executable:/usr/bin/python3Python
Version: 3.9.1
"""
I can't find the problem?
My urls.py
"""
from django.contrib import admin
from django.urls import include,path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('main.urls')),
path('raporty/', include('raporty.urls')),
path('settings/', include('settings.urls'))
]
"""