Fixed #30259 -- Added support for admin_order_field attribute on properties in ModelAdmin.list_display.

This commit is contained in:
Jani Tiainen 2019-03-19 17:51:35 +02:00 committed by Mariusz Felisiak
parent ea60b7bc74
commit 044cc54420
No known key found for this signature in database
GPG key ID: 2EF56372BA48CD1B
7 changed files with 36 additions and 4 deletions

View file

@ -55,6 +55,11 @@ class Article(models.Model):
model_year_reversed.admin_order_field = '-date'
model_year_reversed.short_description = ''
def property_year(self):
return self.date.year
property_year.admin_order_field = 'date'
model_property_year = property(property_year)
class Book(models.Model):
"""