mirror of
https://github.com/django/django.git
synced 2025-12-15 21:45:20 +00:00
Fixed #31558 -- Added support for boolean attribute on properties in ModelAdmin.list_display.
This commit is contained in:
parent
2f1ab16be5
commit
225328efd9
7 changed files with 29 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ from django.contrib.contenttypes.models import ContentType
|
|||
from django.core.exceptions import ValidationError
|
||||
from django.core.files.storage import FileSystemStorage
|
||||
from django.db import models
|
||||
from django.utils import timezone
|
||||
|
||||
|
||||
class Section(models.Model):
|
||||
|
|
@ -66,6 +67,11 @@ class Article(models.Model):
|
|||
def model_month(self):
|
||||
return self.date.month
|
||||
|
||||
@property
|
||||
@admin.display(description="Is from past?", boolean=True)
|
||||
def model_property_is_from_past(self):
|
||||
return self.date < timezone.now()
|
||||
|
||||
|
||||
class Book(models.Model):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue