admin管理员组文章数量:1345468
I get the following error all the time since two days now and i am stacked at this level.This the error:
django.core.exceptions.ImproperlyConfigured: The included URLconf '<module 'pages.urls' from 'C:\\Users\\adech\\mon_site\\monsite\\pages\\urls.py'>' does not appear to have any patterns in it. If you see the 'urlpatterns' variable with valid patterns in the file then the issue is probably caused by a circular import.
I am a beginner with django and i read the django documentation following all the instructions but always the same problem.
Un extrait du code dans urls de mon site:
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('pages.urls')),
path('services/', include('services.urls')),
path('portfolio/', include('portfolio.urls')),
path('contact/', include('contact.urls')),
]
un extrait du code dans settings :
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'pages', # Application pour la gestion des pages (Accueil, À propos)
'services', # Application pour les services
'portfolio', # Application pour les projets et le portfolio
'contact', # Application pour le formulaire de contact
]
le code dans mon app page.urls
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
]
Le code dans views de mon app pages:
from django.shortcuts import render
def home(request):
return render(request, 'pages/home.html')
本文标签: pythonDjango errordjangocoreexceptionsImproperlyConfiguredStack Overflow
版权声明:本文标题:python - Django error : django.core.exceptions.ImproperlyConfigured: - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778165a2537364.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论