I don't know anything about bootstrap pagination. IN my django application it was already used.
I just want to put the pages link near the table generated but i am not able to find where can i chnage the template only for that particular page.
This is currenly written in the template
{% if page_obj.has_other_pages %}
{% bootstrap_paginate page_obj range=10 show_prev_next="true" show_first_last="true" %}
{% endif %}
{% if qs_count %}
<small>Found {{ qs_count }} results (page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}):</small>
{% else %}
<small>No results found.</small>
{% endif %}