source: firmaeventos/base/templates/base.paginator.html @ 2c1cb23

Last change on this file since 2c1cb23 was 66158c7, checked in by rudmanmrrod <rudman22@…>, 7 years ago

Agregado paginador y listado de eventos

  • Property mode set to 100644
File size: 782 bytes
Line 
1<ul class="pagination center">
2    {% if paginator.has_previous %}
3        <li>
4            <span>
5                <a href="?page={{ paginator.previous_page_number }}" class="waves-effect">
6                    <i class="material-icons tiny" id="tiny">chevron_left</i> Anterior
7                </a>
8            </span>
9        </li>
10    {% endif %}
11        <li>
12            <span>Página {{ paginator.number }} de {{ paginator.paginator.num_pages }}.</span>
13        </li>
14    {% if paginator.has_next %}
15        <li>
16            <span>
17                <a href="?page={{ paginator.next_page_number }}" class="waves-effect">
18                    Siguiente <i class="material-icons" id="tiny">chevron_right</i>
19                </a>
20            </span>
21        </li>
22    {% endif %}
23</ul>
Note: See TracBrowser for help on using the repository browser.