I have a model with BitField like this: ``` class MyModel(models.Model): notifications = BitField(flags=('facebook', 'phone', 'gmail')) ``` Say facebook, gmail are active, then in list view(django-admin) want those flag label comma separated.
I have a model with BitField like this:
Say facebook, gmail are active, then in list view(django-admin) want those flag label comma separated.