Browse Source

correction trie des allocations

Élie Bouttier 6 years ago
parent
commit
a68e67942c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      services/admin.py

+ 1 - 1
services/admin.py

@@ -191,6 +191,7 @@ class AllocationInline(admin.TabularInline):
     formset = AllocationInlineFormSet
     extra = 0
     show_change_link = True
+    ordering = ('-start',)
 
     def get_queryset(self, request):
         qs = super().get_queryset(request)
@@ -225,7 +226,6 @@ class ActiveAllocationMixin:
 class InactiveAllocationMixin:
     verbose_name_plural = 'Anciennes allocations'
     max_num = 0
-    ordering = ('-start',)
 
     def get_queryset(self, request):
         return super().get_queryset(request).exclude(get_active_filter())