For models.CharField(), we use to give a choices attribute. Normally these choices will be displayed in select box. Is it possible to display the option buttons instead of select box (in admin interface)? Any suggestions?
status = models.CharField(max_length = 25, choices = (('IN PROGRESS', 'IN PROGRESS'),('COMPLETED','COMPLETED')))
The following ModelAdmin subclass (in your admin.py) does what you’re after:
HORIZONTAL is also possible.
From the Django docs.