mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
Ordonancement des tickets par date
This commit is contained in:
parent
a561f09458
commit
609904c279
2 changed files with 2 additions and 2 deletions
|
@ -38,6 +38,6 @@ def aff_ticket(request,ticketid):
|
|||
|
||||
def aff_tickets(request):
|
||||
""" Vue d'affichage de tout les tickets """
|
||||
tickets = Ticket.objects.all()
|
||||
tickets = Ticket.objects.all().order_by('date')
|
||||
return render(request,'tickets/index.html',
|
||||
{'tickets_list':tickets})
|
||||
|
|
|
@ -978,7 +978,7 @@ def profil(request, users, **_kwargs):
|
|||
request.GET.get('order'),
|
||||
SortTable.MACHINES_INDEX
|
||||
)
|
||||
tickets = Ticket.objects.filter(user=users).all()
|
||||
tickets = Ticket.objects.filter(user=users).all().order_by('date')
|
||||
nb_tickets = tickets.count()
|
||||
pagination_large_number = GeneralOption.get_cached_value(
|
||||
'pagination_large_number'
|
||||
|
|
Loading…
Reference in a new issue