Initial commit
Cette révision appartient à :
révision
793bb6a488
182 fichiers modifiés avec 17153 ajouts et 0 suppressions
13
templates/pagination.html
Fichier normal
13
templates/pagination.html
Fichier normal
|
|
@ -0,0 +1,13 @@
|
|||
{% if is_paginated %}
|
||||
<div id="pagination" aria-label="pagination" class="mt-5">
|
||||
<ul class="pagination pagination-sm justify-content-center flex-wrap">
|
||||
{% for i in paginator.page_range %}
|
||||
{% if page_obj.number == i %}
|
||||
<li class="page-item active"><span class="page-link">{{ i }}<span class="visually-hidden">(current)</span></span></li>
|
||||
{% else %}
|
||||
<li class="page-item" ><a class="page-link" href="{{ request.path }}?{% param_replace page=i %}">{{ i }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
Chargement…
Ajouter une table
Ajouter un lien
Référencer dans un nouveau ticket