Browse Source

Order loans in member admin to display running loans first

Jocelyn Delalande 7 years ago
parent
commit
878aa4fbd6
1 changed files with 4 additions and 0 deletions
  1. 4 0
      hardware_provisioning/admin.py

+ 4 - 0
hardware_provisioning/admin.py

@@ -155,6 +155,10 @@ class LoanInline(admin.TabularInline):
 
     show_change_link = True
 
+    def get_queryset(self, request):
+        qs = super(LoanInline, self).get_queryset(request)
+        return qs.order_by('-loan_date_end')
+
     def has_add_permission(self, request, obj=None):
         return False