Hi,
I am working on the Django tutorial. (https://docs.djangoproject.com/en/1.6/intro/tutorial01/)
I setup the initial admin for an app, but in the list of records in Admin it just says 'object', not a useful description of the document.
The tutorial (in the link above) instructs the following:
"Wait a minute. <Poll: Poll object> is, utterly, an unhelpful representation of this object. Let’s fix that by editing the polls model (in the polls/models.py file) and adding a unicode() method to both Poll and Choice. On Python 3, simply replace unicode by str in the following example:"
I did this, but the list of records in Admin is still showing 'object'. And I am using Python 3, so I used str instead of unicode per the instructions.
Any idea?