Hello!,

There are two models

--------------------------------------------------------------------------------------

class Parent(models.Model):
   name = ...

class Child(models.Model):
    parent = models.ForeignKey(Parent)
    age = ...

---------------------------------------------------------------------------------------

Can I display chidren's age, when I using [Parent - change_list]
InlineModelAdmin option do what I need when I editing Parent object.
But, I can't use it in the change_list.


Thank you!!
--~--~---------~--~----~------------~-------~--~----~
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