admin.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 = (
  14. 'designation', 'mac_address', 'serial',
  15. 'owner__email', 'owner__nickname',
  16. 'owner__first_name', 'owner__last_name')
  17. actions = ['give_back']
  18. def give_back(self, request, queryset):
  19. for item in queryset.filter(loans__loan_date_end=None):
  20. item.give_back()
  21. give_back.short_description = 'Rendre le matériel'
  22. @admin.register(Loan)
  23. class LoanAdmin(admin.ModelAdmin):
  24. list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
  25. list_filter = ('item__designation', 'user__username')
  26. search_fields = ('item', 'user')
  27. actions = ['end_loan']
  28. def end_loan(self, request, queryset):
  29. queryset.filter(loan_date_end=None).update(
  30. loan_date_end=date.today())
  31. end_loan.short_description = 'Mettre fin au prêt'