2017-01-15 23:07:42 +00:00
|
|
|
{% comment %}
|
2020-11-23 16:06:37 +00:00
|
|
|
Re2o est un logiciel d'administration développé initiallement au Rézo Metz. Il
|
2017-01-15 23:07:42 +00:00
|
|
|
se veut agnostique au réseau considéré, de manière à être installable en
|
|
|
|
quelques clics.
|
|
|
|
|
|
|
|
Copyright © 2017 Gabriel Détraz
|
2019-09-29 14:02:28 +00:00
|
|
|
Copyright © 2017 Lara Kermarec
|
2017-01-15 23:07:42 +00:00
|
|
|
Copyright © 2017 Augustin Lemesle
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
{% endcomment %}
|
|
|
|
|
2017-10-21 19:31:45 +00:00
|
|
|
{% load url_insert_param %}
|
2019-12-06 00:01:13 +00:00
|
|
|
{% load pagination_extra %}
|
2018-12-30 15:28:03 +00:00
|
|
|
{% load i18n %}
|
2017-10-21 19:31:45 +00:00
|
|
|
|
2018-05-03 12:57:43 +00:00
|
|
|
{% if list.paginator.num_pages > 1 %}
|
2018-12-30 15:28:03 +00:00
|
|
|
<ul class="pagination text-center">
|
|
|
|
{% if list.has_previous %}
|
|
|
|
<li>
|
2019-12-06 00:01:13 +00:00
|
|
|
<a href="{% pagination_insert_page_and_id request.get_full_path 1 page_arg=page_arg %}{% if go_to_id %}#{{ go_to_id }}{% endif %}">
|
2018-12-30 15:28:03 +00:00
|
|
|
<span aria-hidden="true">«</span>
|
|
|
|
<span class="sr-only">{% trans "First" %}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
2019-12-06 00:01:13 +00:00
|
|
|
<a href="{% pagination_insert_page_and_id request.get_full_path list.previous_page_number page_arg=page_arg %}{% if go_to_id %}#{{ go_to_id }}{% endif %}">
|
2018-12-30 15:28:03 +00:00
|
|
|
<span aria-hidden="true">‹</span>
|
|
|
|
<span class="sr-only">{% trans "Previous" %}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="disabled"><span aria-hidden="true">«</span></li>
|
|
|
|
<li class="disabled"><span aria-hidden="true">‹</span></li>
|
2016-10-07 21:40:44 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2018-12-30 15:28:03 +00:00
|
|
|
{% for page in list.paginator.page_range %}
|
|
|
|
{% if list.number <= page|add:"3" and list.number >= page|add:"-3" %}
|
|
|
|
<li class="{% if list.number == page %}active{% endif %}">
|
2019-12-06 00:01:13 +00:00
|
|
|
<a href="{% pagination_insert_page_and_id request.get_full_path page page_arg=page_arg %}{% if go_to_id %}#{{ go_to_id }}{% endif %}">{{ page }}</a>
|
2018-12-30 15:28:03 +00:00
|
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2018-05-20 19:21:29 +00:00
|
|
|
|
2018-12-30 15:28:03 +00:00
|
|
|
{% if list.has_next %}
|
|
|
|
<li>
|
2019-12-06 00:01:13 +00:00
|
|
|
<a href="{% pagination_insert_page_and_id request.get_full_path list.next_page_number page_arg=page_arg %}{% if go_to_id %}#{{ go_to_id }}{% endif %}">
|
2018-12-30 15:28:03 +00:00
|
|
|
<span aria-hidden="true">›</span>
|
|
|
|
<span class="sr-only">{% trans "Next" %}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
2019-12-06 00:01:13 +00:00
|
|
|
<a href="{% pagination_insert_page_and_id request.get_full_path list.paginator.page_range|length page_arg=page_arg %}{% if go_to_id %}#{{ go_to_id }}{% endif %}">
|
2018-12-30 15:28:03 +00:00
|
|
|
<span aria-hidden="true">»</span>
|
|
|
|
<span class="sr-only">{% trans "Last" %}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="disabled"><span aria-hidden="true">›</span></li>
|
|
|
|
<li class="disabled"><span aria-hidden="true">»</span></li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|
2019-12-06 00:01:13 +00:00
|
|
|
|
2018-12-30 15:28:03 +00:00
|
|
|
{% endif %}
|