I want to display the item number with the items in a page using django paginator.
I want to display the item number in front of item in a page for example:
If i have total 15 items and my paginator code display 10 items per page then on first page it should display like:
1 item1
2 item2
etc
and next page it should display:
11 item11
12 item12
etc