Django раскрывает необработанный html на отображаемом сайте
Я изучаю Django с помощью учебника по документации:
https://docs.djangoproject.com/en/4.0/intro/tutorial03/
Я только что закончил часть "Написать представления, которые действительно что-то делают", но что-то определенно не так. Несмотря на то, что я скопировал код 1:1, я получаю вот такой рендеринг:
Последние две части кода, которые я отредактировал:
index.html в каталоге polls/templates/polls:
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
views.py в каталоге polls:
from django.http import HttpResponse
from django.template import loader
from .models import Question
def index(request):
latest_question_list = Question.objects.order_by('-pub_date')[:5]
template = loader.get_template('polls/index.html')
context = {
'latest_question_list': latest_question_list,
}
return HttpResponse(template.render(context, request))
def detail(request, question_id):
return HttpResponse("You're looking at question %s." % question_id)
def results(request, question_id):
response = "You're looking at the results of question %s."
return HttpResponse(response % question_id)
def vote(request, question_id):
return HttpResponse("You're voting on question %s." % question_id)
Попробуйте обновить представление, чтобы сделать его более простым:
def index(request):
latest_question_list = Question.objects.all()
context = {
'latest_question_list': latest_question_list,
}
return render(request, 'polls/index.html', context)
