How to show the correct object numbers when using django-pagination
You can use the add
template tag to add the current count from the paginator to the forloop
{{ forloop.counter|add:paginator.page.start_index }}
I have used this in my template and its working properly
{{ page_obj.start_index|add:forloop.counter0 }}
Or you can use
{% for obj in obj_list %}
{{ forlopp.counter0|add:obj_list.start_index }}
{% endfor %}