Guest User

Untitled

a guest
Nov 13th, 2019
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.08 KB | None | 0 0
  1.                         {% if is_paginated %}
  2.                         <nav aria-label="navigation">
  3.                             <ul class="pagination justify-content-end mt-50">
  4.                                 {% if page_obj.has_previous %}
  5.                                     <li class="page-item"><a class="page-link" href="?page={{ page_obj.previous_page_number }}">Previous</a></li>
  6.                                 {% endif %}
  7.                                 {% if page_obj.has_next%}
  8.                                     <li class="page-item"><a class="page-link" href="?page={{ page_obj.next_page_number }}">Next</a></li>
  9.                                 {% endif %}
  10.                                 <!--<li class="page-item active"><a class="page-link" href="#">01.</a></li>
  11.                                
  12.                                 <li class="page-item"><a class="page-link" href="#">03.</a></li>
  13.                                 <li class="page-item"><a class="page-link" href="#">04.</a></li>-->
  14.                             </ul>
  15.                         </nav>
  16.                         {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment