I can\'t figure out what I\'m doing wrong here. My error is: ImproperlyConfigured at /admin/ \'CategoryAdmin.fields\' must be a list or tuple.
Isn\'
It should be:
fields = ('title', )
Example:
In [64]: type(('title')) Out[64]: str In [65]: type(('title', )) Out[65]: tuple