Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.74 KB | None | 0 0
  1. <div class = "container mt-2">
  2.                     <nav aria-label="Page navigation example footer">
  3.                           <ul class="pagination">
  4.                               {% if cur_list != 1 %}
  5.                             <li class="page-item"><a class="page-link" href="#">Previous</a></li>
  6.                               {% endif %}
  7.                             <li class="page-item"><a class="page-link" href="#">{{cur_list}}</a></li>
  8.                               {% if max_page_number > cur_list%}
  9.                             <li class="page-item"><a class="page-link" href="#">{{max_page_number}}</a></li>
  10.                               {% endif %}
  11.                           </ul>
  12.                     </nav>
  13.                     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement