Hi Jeff,

You'll need to add a __str__ method to your Status class as since it
doesn't have one it is only returning the object. If your familiar with
java its like a toString() method

class Status(models.Model):
    Status = models.CharField(maxlength=50)
   def __str__(self):
        return self.Status
   class Admin:
        list_display = ['Status'] 
 
That should to the trick,

Sam,


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to