Я использую Django и postgres.
Мой views.py выглядит так:
def home(request):
title = Scrap.objects
return render(request, 'index.html', {'headlines': headlines})
Мой index. html выглядит так:
<div class="content"
style="background:white; color: white; font-family: Verdana;font-weight: 5;text-align: center;">
{% for headline in headlines.all reversed %}
<a href="{{ headline.url }}" target="_blank" style="color:black; font-size: medium;" />{{ headline.headlines }}</a>
<hr style="border-bottom: dotted 1px #000" />
{% endfor %}
</div>
С помощью приведенного выше кода я получаю все строки из базы данных. Как я могу получить только "N" строк?
Я пробовал :
{% for headline in headlines.all[:5] reversed %}
, но выдает ошибку.
Не удалось разобрать остаток: '[: 5]' из 'headlines.all [: 5]'