D
D
DmitryRise2017-09-15 16:33:41
Django
DmitryRise, 2017-09-15 16:33:41

How to make pagination inside Django news?

It is required to create a pagination inside the news. That is, the news has 2 buttons: "Previous news" and "Next news". Can you please tell me how to implement this? Does anyone have examples? Google didn't help

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexey Sergeev, 2017-09-15
@SergeevAI

Documentation. get_next_by_FOO()

A
Astrohas, 2017-09-15
@Astrohas

next = Post.objects.filter(pub_time__gt=post.pub_time).order_by("pub_time").first()
prev = Post.objects.filter(pub_time__lt=post.pub_time).order_by("-pub_time").first()

something like this

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question