-1
アサーションエラー/ accounts/tcresults 例外メッセージはありません。 私は、このエラーが起こる理由を私は理解できないviews.pyAssertionError/accounts/tcresults
def tc(request):
tcresults = ImageAndUser.objects.filter(user=request.user).order_by('id').last()
d = {
'tcresults': tcresults,
}
return render(request, 'registration/accounts/tc.html', d)
でtc.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Score</title>
</head>
<body>
<h1>Score</h1>
<h2>Your Score is
{{ tcresults.tc }}
{{ value1 = tcresults.tc
if value1 > 5000:
<h2>Good</h2>
elseif value1 < 900:
<h2>Bad</h2>
}}
</h2>
</body>
</html>
に書いています。 これを解決するにはどうすればよいですか?あなたのHTML内
thx、ur comments。私はurコードを書いたが、「Your Score is」の数は空白になりました。私は何をすべきですか? – user7523656
良い、悪いもそこに表示されていません。 – user7523656
thx !!あなたのスコアの一部は〜ですが、if文(Good&Badを含む)は表示されません。これを修正するにはどうすればよいですか? – user7523656