Nếu bạn có nhiều trường thuộc tính quan hệ để sử dụng list_display
và không muốn tạo hàm (và thuộc tính của nó) cho từng trường, một giải pháp đơn giản nhưng bẩn thỉu sẽ ghi đè phương thức ModelAdmin
instace __getattr__
, tạo ra các hàm gọi được khi đang bay:
class DynamicLookupMixin(object):
'''
a mixin to add dynamic callable attributes like 'book__author' which
return a function that return the instance.book.author value
'''
def __getattr__(self, attr):
if ('__' in attr
and not attr.startswith('_')
and not attr.endswith('_boolean')
and not attr.endswith('_short_description')):
def dyn_lookup(instance):
# traverse all __ lookups
return reduce(lambda parent, child: getattr(parent, child),
attr.split('__'),
instance)
# get admin_order_field, boolean and short_description
dyn_lookup.admin_order_field = attr
dyn_lookup.boolean = getattr(self, '{}_boolean'.format(attr), False)
dyn_lookup.short_description = getattr(
self, '{}_short_description'.format(attr),
attr.replace('_', ' ').capitalize())
return dyn_lookup
# not dynamic lookup, default behaviour
return self.__getattribute__(attr)
# use examples
@admin.register(models.Person)
class PersonAdmin(admin.ModelAdmin, DynamicLookupMixin):
list_display = ['book__author', 'book__publisher__name',
'book__publisher__country']
# custom short description
book__publisher__country_short_description = 'Publisher Country'
@admin.register(models.Product)
class ProductAdmin(admin.ModelAdmin, DynamicLookupMixin):
list_display = ('name', 'category__is_new')
# to show as boolean field
category__is_new_boolean = True
Như ý chính ở đây
Các thuộc tính đặc biệt có thể gọi được như boolean
và short_description
phải được xác định là ModelAdmin
thuộc tính, ví dụ book__author_verbose_name = 'Author name'
và category__is_new_boolean = True
.
admin_order_field
Thuộc tính có thể gọi được xác định tự động.
Đừng quên sử dụng thuộc tính list_select_relatedModelAdmin
để giúp Django tránh các truy vấn có tính chất quảng cáo.
get_author
, vì đó là những gì chuỗi bạn trả về (và mô tả ngắn) thực sự tham chiếu? Hoặc thay đổi đối số định dạng chuỗi thànhobj.book.reviews
?