Suggestion:
A way for Django Admin users to view tooltips/help text about the purpose of a flag
How:
Use the Django model instance property help_text
https://docs.djangoproject.com/en/3.0/ref/models/fields/#help-text
Proposed Usage:
Specify in the settings
'FLAG_DOES_A_THING': [{'condition': 'boolean', 'value': False, 'help_text': 'When set to True, this will do something great'}],
Does django-flags already have a way to achieve something similar?