As a newbie I'm struggling to get to grips with Django's admin interface. I have created two tables (Promoter, Promotions) which have a straight forward 1-Many relationship.
A couple of unexplained issues:- 1. The objects are being displayed in the Admin area as "Promoters" and "Promotionss" - note the added "s". 2. I have added a core=True parameter to one of the fields in the Class Promtions. However, when I try to add a record via Admin I get messages asking for every field to be completed. I experienced the same when I went through the tutorial with the Poll/Choices example. I understood that core=True only operates on a specific field rather than a whole record. If this is true, where am I going wrong? Finally, I would like to click on a Promoter in the Admin area and see a list (rather than the complete record) of all their Promotions, in a collapsed view. The Promotions table has alot of fields and I've tried using the edit_inline parameter. However, when I do this I get the Promoter records at the top and then the complete record of each promotions, instead of a simple list of each record. Currently, this makes the system ugly and unusable for me as an Admin function. MerMer --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

