Is there an option to see records index on the current page and total?
For example:
Records 51-100, 980 total
on page #2
I could maybe use a {% with object_list.count as "pages_total" %}
templatetag then lots of code.. and {% endwith %} at the end code.. - done before the {% paginate %}
or {% autopaginate %}
but this doesn't seem to be a nice solution. Also it makes another db call.
I can't find this in documentation, and {{ object_list.count }}
gives 50 in this situation.