admin.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from datetime import date
  4. from django.contrib import admin
  5. from .models import ItemType, Item, Loan
  6. admin.site.register(ItemType)
  7. @admin.register(Item)
  8. class ItemAdmin(admin.ModelAdmin):
  9. list_display = (
  10. 'designation', 'type', 'mac_address', 'serial', 'owner',
  11. 'buy_date', 'is_available')
  12. list_filter = ('type__name', 'buy_date', 'owner')
  13. search_fields = ('designation', 'owner')
  14. actions = ['give_back']
  15. def give_back(self, request, queryset):
  16. for item in queryset.filter(loans__loan_date_end=None):
  17. item.give_back()
  18. give_back.short_description = 'Rendre le matériel'
  19. @admin.register(Loan)
  20. class LoanAdmin(admin.ModelAdmin):
  21. list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
  22. list_filter = ('item__designation', 'user__username')
  23. search_fields = ('item', 'user')
  24. actions = ['end_loan']
  25. def end_loan(self, request, queryset):
  26. queryset.filter(loan_date_end=None).update(
  27. loan_date_end=date.today())
  28. end_loan.short_description = 'Mettre fin au prêt'