|
@@ -6,7 +6,7 @@ from datetime import date
|
|
|
|
|
|
from django.contrib import admin
|
|
from django.contrib import admin
|
|
from django.contrib.auth import get_user_model
|
|
from django.contrib.auth import get_user_model
|
|
-from .models import ItemType, Item, Loan
|
|
|
|
|
|
+from .models import ItemType, Item, Loan, Storage
|
|
|
|
|
|
|
|
|
|
User = get_user_model()
|
|
User = get_user_model()
|
|
@@ -36,7 +36,7 @@ class ItemAdmin(admin.ModelAdmin):
|
|
list_display = (
|
|
list_display = (
|
|
'designation', 'type', 'mac_address', 'serial', 'owner',
|
|
'designation', 'type', 'mac_address', 'serial', 'owner',
|
|
'buy_date', 'is_available')
|
|
'buy_date', 'is_available')
|
|
- list_filter = ('type__name', 'buy_date', OwnerFilter)
|
|
|
|
|
|
+ list_filter = ('type__name', 'storage', 'buy_date', OwnerFilter)
|
|
search_fields = (
|
|
search_fields = (
|
|
'designation', 'mac_address', 'serial',
|
|
'designation', 'mac_address', 'serial',
|
|
'owner__email', 'owner__nickname',
|
|
'owner__email', 'owner__nickname',
|
|
@@ -59,3 +59,15 @@ class LoanAdmin(admin.ModelAdmin):
|
|
queryset.filter(loan_date_end=None).update(
|
|
queryset.filter(loan_date_end=None).update(
|
|
loan_date_end=date.today())
|
|
loan_date_end=date.today())
|
|
end_loan.short_description = 'Mettre fin au prêt'
|
|
end_loan.short_description = 'Mettre fin au prêt'
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+@admin.register(Storage)
|
|
|
|
+class StorageAdmin(admin.ModelAdmin):
|
|
|
|
+ list_display = ('name', 'truncated_notes')
|
|
|
|
+
|
|
|
|
+ def truncated_notes(self, obj):
|
|
|
|
+ if len(obj.notes) > 50:
|
|
|
|
+ return '{}…'.format(obj.notes[:50])
|
|
|
|
+ else:
|
|
|
|
+ return obj.note
|
|
|
|
+ truncated_notes.short_description = 'notes'
|