Displaying queryset items one at time

I trying to figure out a way to display the information in a queryset one item at a time on a template. Then when I press back or next django will move to the previous or next item in the queryset. Is this possible?

I think you’re looking for Django’s pagination capabilities: Paginator | Django documentation | Django

To use a single item, you can use a page size of 1.

Here’s an example: How to Paginate with Django

1 Like

Another example: view / template

1 Like

Oh, and I forgot there is a topic guide in Django’s docs: Pagination | Django documentation | Django

1 Like

Your solution worked perfectly thank you for your help.