Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 %}   
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.