|
@@ -14,10 +14,16 @@ class ItemAdmin(admin.ModelAdmin):
|
|
'buy_date', 'is_available')
|
|
'buy_date', 'is_available')
|
|
list_filter = ('type__name', 'buy_date')
|
|
list_filter = ('type__name', 'buy_date')
|
|
search_fields = ('designation', 'user_in_charge')
|
|
search_fields = ('designation', 'user_in_charge')
|
|
|
|
+ actions = ['give_back']
|
|
|
|
|
|
|
|
+ def give_back(self, request, queryset):
|
|
|
|
+ for item in queryset.filter(loans__loan_date_end=None):
|
|
|
|
+ item.give_back()
|
|
|
|
+ give_back.short_description = 'Rendre le matériel'
|
|
|
|
|
|
@admin.register(Loan)
|
|
@admin.register(Loan)
|
|
class LoanAdmin(admin.ModelAdmin):
|
|
class LoanAdmin(admin.ModelAdmin):
|
|
list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
|
|
list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
|
|
list_filter = ('item__designation', 'user__username')
|
|
list_filter = ('item__designation', 'user__username')
|
|
search_fields = ('item', 'user')
|
|
search_fields = ('item', 'user')
|
|
|
|
+
|