আপনার যদি প্রচুর পরিমাণের বৈশিষ্ট্যযুক্ত ক্ষেত্রগুলি ব্যবহার করতে হয় list_display
এবং প্রতিটিটির জন্য একটি ফাংশন (এবং এটির বৈশিষ্ট্যগুলি) তৈরি করতে না চান, তবে একটি ময়লা কিন্তু সহজ সমাধান ModelAdmin
তাত্ক্ষণিক __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
এখানে সংক্ষেপ হিসাবে
Callable বিশেষ বৈশিষ্ট্য পছন্দ boolean
এবং short_description
হিসাবে সংজ্ঞায়িত করা আবশ্যক ModelAdmin
বৈশিষ্ট্যাবলী যেমন book__author_verbose_name = 'Author name'
এবং category__is_new_boolean = True
।
কলযোগ্য admin_order_field
বৈশিষ্ট্য স্বয়ংক্রিয়ভাবে সংজ্ঞায়িত করা হয়।
জ্যাঙ্গো অ্যাডিশনাল কোয়েরি এড়াতে আপনার তালিকা_সিলিট_ সম্পর্কিত সম্পর্কিত বৈশিষ্ট্যটি ব্যবহার করতে ভুলবেন না ModelAdmin
।
get_author
, যেহেতু আপনি যে স্ট্রিংটি ফিরে আসছেন তা (এবং সংক্ষিপ্ত বিবরণ) আসলে উল্লেখ করা উচিত? বা স্ট্রিং ফর্ম্যাট যুক্তি এ পরিবর্তনobj.book.reviews
?