Browse Source

Display wether a loan is running or not in member admin

Jocelyn Delalande 7 years ago
parent
commit
6664144b31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hardware_provisioning/admin.py

+ 1 - 1
hardware_provisioning/admin.py

@@ -151,7 +151,7 @@ class LoanInline(admin.TabularInline):
     model = Loan
     model = Loan
     extra = 0
     extra = 0
     exclude = ('notes',)
     exclude = ('notes',)
-    readonly_fields = ('item', 'get_mac_or_serial', 'loan_date', 'loan_date_end')
+    readonly_fields = ('item', 'get_mac_or_serial', 'loan_date', 'loan_date_end', 'is_running')
 
 
     show_change_link = True
     show_change_link = True