disable active pages

pull/157/head
Aevann 2023-06-24 18:03:19 +03:00
parent 31b086db51
commit 95dae28022
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
{% for x in range(start_point, end_point+1) %}
<li class="page-item">
<small><a class="page-link {% if x == page %}active{% endif %}" href="{{x|change_page(request.full_path)|safe}}">{{x}}</a></small>
<small><a class="page-link {% if x == page %}active disabled{% endif %}" href="{{x|change_page(request.full_path)|safe}}">{{x}}</a></small>
</li>
{% endfor %}