Skip to content

Instantly share code, notes, and snippets.

View junior-r's full-sized avatar
🏠
Working from home

Wilfred Junior Ruiz Navas junior-r

🏠
Working from home
View GitHub Profile
@moisessepulveda
moisessepulveda / paginator.html
Last active July 14, 2024 02:15
DJANGO BOOTSTRAP PAGINATOR
{% if paginator.num_pages > 1%}
<div class="d-flex justify-content-center">
<ul class="pagination">
{% if entity.has_previous %}
<li class="page-item d-none d-sm-block"><a class="page-link" href="?page={{ entity.previous_page_number }}#pagtable">Anterior</a></li>
{% endif %}
{% for page in paginator.page_range %}
{% if forloop.last and page != entity.number and paginator.num_pages > 7 %}
{% if entity.next_page_number != paginator.num_pages%}
<li class="page-item">