1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-06-21 08:38:23 +02:00

Drop old templates and old search

This commit is contained in:
Alexandre Iooss
2019-08-09 08:28:57 +02:00
parent d0f2140d14
commit b4cfb8d3b6
40 changed files with 131 additions and 10707 deletions

View File

@ -0,0 +1,21 @@
{% comment %}
SPDX-License-Identifier: GPL-3.0-or-later
{% endcomment %}
<ul class="pagination nav navbar-nav">
{% if list.has_previous %}
<li><a href="?page=1"> << </a></li>
<li><a href="?page={{ list.previous_page_number }}"> < </a></li>
{% endif %}
{% 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 %}"><a href="?page={{page }}">{{ page }}</a></li>
{% endif %}
{% endfor %}
{% if list.has_next %}
<li><a href="?page={{ list.next_page_number }}"> > </a></li>
<li><a href="?page={{ list.paginator.page_range|length }}"> >> </a></li>
{% endif %}
</ul>