これがばかげた質問であるならば、私は非常に申し訳ありません。私は数時間解決策を見つけようとしましたが、私は新しく、あまり頭が良くありません。
私のウェブページにはテキスト全体が表示されません。表示されるテキストはごくわずかです。
views.py:
Create your views here.
from django.template import loader
from django.http import HttpResponse
def testing(request):
html = loader.get_template('testing.html')
return HttpResponse(html)
tests.html
<html>
<body>
THIS IS A TEST PAGE.
</body>
</html>
私のローカルサーバーページに表示されるのは、これだけです'>
残りは見えません。何が悪いのか教えていただけますか?どうもありがとう。