I just added admin related info in models.py The models however do not show up in django admin. I am using 1.0.2 version currently. they were displaying properly in .97 version
31 32 def __str__(self): 33 return "name: " +self.first_name + " " + self.mi + " " + \ 34 self.last_name + ", " + self.institution 35 36 class Admin: 37 pass Is the way to display information in admin different in 1.0.2 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

