前提・実現したいこと
python djangoで、create.htmlをウェブ上に表示したいのですが、
ターミナルで、runserver後に、/createと入力すると、
TemplateDoesNotExistとエラーが出て、表示ができません。
発生している問題・エラーメッセージ
/ create /にあるTemplateDoesNotExist
該当のソースコード
urls.py from django.urls import path from .views import Listfunc, Createfunc urlpatterns = [ path('list/', Listfunc.as_view(), name='list'), path('create/', Createfunc.as_view(), name='create'),] ---- views.py from .models import MeigennModel from django.views.generic import ListView,CreateView from django.urls import reverse_lazy from django.shortcuts import redirect class Listfunc(ListView): template_name = 'list.html' model = MeigennModel class Createfunc(CreateView): tamplate_name = 'create.html' model = MeigennModel fields = ('title', 'name', 'age', 'memo') success_url = reverse_lazy('list.html') --------- setting.py TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] ### 試したこと 多くのTemplateDoesNotExistに対する解決方法のサイトを見て、 setting.pyのINSTALLED_APPSやTEMPLATESを見直しましたが、 解決できませんでした。 また、さらに頭を悩ませる原因として、list.htmlはちゃんと Web上に表示されるので、解決方法が思い浮かびません。 ### 補足情報(FW/ツールのバージョンなど)
あなたの回答
tips
プレビュー