前提・実現したいこと
djangoにおけるテンプレートエラーを解決したい。
発生している問題・エラーメッセージ
エラーメッセージ raise TemplateDoesNotExist(', '.join(template_name_list), chain=chain) django.template.exceptions.TemplateDoesNotExist: wegihtrecord:record ```使用言語はpython(django)とHTML,cssです。 ### 試したこと setting.pyのtemplatesのパスは設定はしました。 ```python (アプリのurls.py) from django.urls import path from . import views app_name = "wegihtrecord" urlpatterns = [ path('record/', views.RecordView.as_view(), name="record"), ]
python
1(views.py) 2from django.shortcuts import render 3from .forms import RecordForm 4from django.http import HttpResponse 5from django.views.generic import FormView 6from django.urls import reverse_lazy 7 8class RecordView(FormView): 9 form_class = RecordForm 10 template_name = 'wegihtrecord:record' 11 success_url = reverse_lazy('wegihtrecord:record') 12 13 def form_valid(self,form): 14 queryset=form.save(commit=False) 15 queryset.userid = self.request.id 16 queryset.save() 17 return super().form_valid(form) 18 19 20
python
1(プロジェクトのurls.py) 2from django.contrib import admin 3from django.urls import path,include 4from django.contrib.auth.decorators import login_required 5 6 7urlpatterns = [ 8 path('admin/', admin.site.urls), 9 path('', include('top_page.urls')), 10 path('man/', include('male.urls')), 11 path('woman/',include('female.urls')), 12 path('', include('registration.urls')), 13 path('', include('weightrecord.urls')), 14] 15
html
1(recordのテンプレート) 2<!DOCTYPE html> 3<html> 4<head> 5<meta charset="UTF-8"> 6</head> 7<body> 8 <form method="post" action="wegihtrecord/record"> 9 {% csrf_token %} 10 {{form.as_p}} 11 </form> 12</body> 13</html>
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/15 16:54