8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-03 00:12:50 +00:00

Mise en place de la pagination sur la liste des bannissements, et classement par ordre de date décroissante

This commit is contained in:
Tipunchetrhum 2016-11-01 16:32:14 +01:00 committed by chirac
parent 3685396c4a
commit 9efc81644f
2 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,7 @@
{% if ban_list.paginator %}
{% include "pagination.html" with list=ban_list %}
{% endif %}
<table class="table table-striped">
<thead>
<tr>

View file

@ -402,7 +402,17 @@ def index(request):
@login_required
@permission_required('cableur')
def index_ban(request):
ban_list = Ban.objects.order_by('date_start')
ban_list = Ban.objects.order_by('date_start').reverse()
paginator = Paginator(ban_list, PAGINATION_NUMBER)
page = request.GET.get('page')
try:
ban_list = paginator.page(page)
except PageNotAnInteger:
# If page isn't an integer, deliver first page
ban_list = paginator.page(1)
except EmptyPage:
# If page is out of range (e.g. 9999), deliver last page of results.
ban_list = paginator.page(paginator.num_pages)
return render(request, 'users/index_ban.html', {'ban_list': ban_list})
@login_required