I have two models
class Category(models.Model):
    name = models.CharField("category", max_length=200, null=True)
    discount = models.PositiveIntegerField(null=True)
class Product(models.Model):
    name = models.CharField("product", max_length=200)
    price = models.DecimalField(max_digits=10, decimal_places=2)
    category = models.ForeignKey(Category, on_delete=models.CASCADE, related_name="products", verbose_name="category")
How to show discount value in admin panel?
class ProductAdmin(admin.ModelAdmin):
    list_display = ['name', 'category', 'price', 'discount'] # not works
    list_filter = ['category', 'price']
    list_editable = ['price']
