1234567891011121314151617181920212223242526272829303132333435363738 |
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
- from datetime import date
- from django.contrib import admin
- from .models import ItemType, Item, Loan
- admin.site.register(ItemType)
- @admin.register(Item)
- class ItemAdmin(admin.ModelAdmin):
- list_display = (
- 'designation', 'type', 'mac_address', 'serial', 'owner',
- 'buy_date', 'is_available')
- list_filter = ('type__name', 'buy_date', 'owner')
- search_fields = ('designation', 'owner')
- 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)
- class LoanAdmin(admin.ModelAdmin):
- list_display = ('item', 'user', 'loan_date', 'loan_date_end', 'location')
- list_filter = ('item__designation', 'user__username')
- search_fields = ('item', 'user')
- actions = ['end_loan']
- def end_loan(self, request, queryset):
- queryset.filter(loan_date_end=None).update(
- loan_date_end=date.today())
- end_loan.short_description = 'Mettre fin au prêt'
|