djangoで runserverを実行したのですが、添付画像のエラーとなってしまい
設定を何度も見直してますが、解決できず困っております。
設定を変更したDjangoのファイルは、以下になります。
PCは、Windowsです。
urls.py -config
python
1from django.contrib import admin 2from django.urls import path, include 3 4urlpatterns = [ 5 path('admin/', admin.site.urls), 6 path('', include('user.urls')), # 追記しました。 7] 8
python
1TEMPLATES = [ 2 { 3 'BACKEND': 'django.template.backends.django.DjangoTemplates', 4 'DIRS': [os.path.join(BASE_DIR, 'templates')], # 追記しました。 5 'APP_DIRS': True, 6 'OPTIONS': { 7 'context_processors': [ 8 'django.template.context_processors.debug', 9 'django.template.context_processors.request', 10 'django.contrib.auth.context_processors.auth', 11 'django.contrib.messages.context_processors.messages', 12 ], 13 }, 14 }, 15]
urls.py
python
1from django.urls import path 2from .import views 3app_name = 'user' # 追記しました。 4 5urlpatterns = { 6 path('home/', views.HomeView.as_view(), name='home') # 追記しました。 7}
views.py
python
1from django.shortcuts import render 2from django.views.generic import TemplateView # 追記しました。 3 4# Create your views here. 5class HomeView(TemplateView): #classを追記しました。 6 template_name = "user/index.html"
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/12 21:17
2020/12/13 05:17