19-06-2018, 10:39 AM
Hola amigos, soy nuevo en Django, estoy siguiendo un tutorial sencillo pero estoy parado por un error el cual no aparece en el video. He consultado la documentación y tampoco me ha ayudado a solucionarlo, por favor si alguien sabe como resolver esto, sería de mucha ayuda.
urlpatterns = [
.....
url(r'^mascota/', include('apps.mascota.urls', namespace='mascota')),
...
]
el error es este:
'Specifying a namespace in include() without providing an app_name '
django.core.exceptions.ImproperlyConfigured: Specifying a namespace in include() without providing an app_name is not supported. Set the app_name attribute in the included module, or pass a 2-tuple containing the list of patterns and app_name instead.
urlpatterns = [
.....
url(r'^mascota/', include('apps.mascota.urls', namespace='mascota')),
...
]
el error es este:
'Specifying a namespace in include() without providing an app_name '
django.core.exceptions.ImproperlyConfigured: Specifying a namespace in include() without providing an app_name is not supported. Set the app_name attribute in the included module, or pass a 2-tuple containing the list of patterns and app_name instead.