Якщо у вас є багато полів атрибутів відношення, які потрібно використовувати, list_display
і ви не хочете створювати функції (і це атрибути) для кожного, бруд, але просте рішення буде замінити метод ModelAdmin
instace __getattr__
, створюючи дзвінки на льоту:
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
Як суть тут
Спеціальні атрибути, що називаються , такі як boolean
і short_description
повинні бути визначені як ModelAdmin
атрибути, наприклад, book__author_verbose_name = 'Author name'
та category__is_new_boolean = True
.
Атрибут виклику admin_order_field
визначається автоматично.
Не забувайте використовувати атрибут list_select_related у своєму, ModelAdmin
щоб Django уникав додаткових запитів.
get_author
, оскільки саме на цей рядок, на який ви повертаєтесь (і короткий опис), насправді посилається? Або змінити аргумент формату рядка наobj.book.reviews
?