Hello!
Example code:
models.py
STATUS = [
(0, 'Enabled'),
(1, 'Disabled'),
(2, 'Deprecated'),
...
]
...
status = models.IntegerField(choices=STATUS)
admin.py
list_filter = [('status', MultiSelectFilter),]
As a result, the numbers in the filter, not the values:

Hello!
Example code:
models.py
admin.py
As a result, the numbers in the filter, not the values:
