Добрый день! Подскажите, пожалуйста, почему на странице не отображаются объекты из БД. Страница показывает вместо данных продукта такую надпись <Product: Product object>
Код views.py:
def index(request):
top_list = Invoice.objects.all()
variables = Context({
‘top_list’: top_list
})
return render(request, ‘index.html’, variables)
код index.html
<html>
<head>
<title>{{ head_title }}</title>
</head>
<body>
<p>{{ top_list }}</p>
</body>
</html>