django 1.6.0: admin pages not using unicode methods declared in my model
Hello,
I following the tutorial and realized that the admin pages are not using the __unicode__() methods declared in my model:
One of my classes:
class Company(models.Model):
name = models.CharField(max_length=20)
description = models.CharField(max_length=500)
url = models.URLField(max_length=200)
createdAt = models.DateTimeField(auto_now_add=True)
def __unicode__(self):
return self.name
But the admin page to view and add companies shows the current list of companies with the label "Company object" instead of the names that I gave to those registers. The same happens with the other classes of my model.
-- You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/-P162L-ktJYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home