typeerror en /admin/ 'set' object is not reversible

[image: Error al ejecutar admin en Django via web.PNG]

My code is:  (urls.py)

from django.contrib import admin
from django.urls import path
from aplicacion1 import views 
from django.conf.urls import include 

urlpatterns = [
    path('admin/',admin.site.urls),
    path('aplicacion1/',views.vista1, name='vista1'),
    path('ruta2/', include('aplicacion1.ruta2')),
    path('ruta3',views.vista3, name='vista3'),
    path('ruta4',views.vista4, name= 'vista4'),
]

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b83d65e0-aa97-47fb-970b-9fb5a45af75bn%40googlegroups.com.

Reply via email to