Re: edit_inline problem

2006-09-26 Thread Malcolm Tredinnick
Hello Antoni, On Wed, 2006-09-13 at 16:04 +0200, aaloy wrote: > Hello, > > I have an strange issue when trying to edit inline my model on the > Django admin. Some of the models works properly and others not. > It doesn't give any error but the data is not saved. > [... example snipped...] > I

Re: edit_inline problem

2006-09-13 Thread JoeJ
new news -- Add parent named 'foo', fill in some children, save ... parent exists, no children exists. Add admin-class to children code, so we can manually add children on admin page. Add a child *manually* linked to parent 'foo'. View parent config --- VOILA, its there. But ==> add 1 more chil

Re: edit_inline problem

2006-09-13 Thread JoeJ
ditto -- just bumped into this today. When I edit my "parent" class, can fill in 3 "children" ... but only saves the parent. The database does not contain the 3 children I added when creating the parent. Children have a simple ForeignKey pointing back to parent with an 'inline_edit' setting ...

edit_inline problem

2006-09-13 Thread aaloy
Hello, I have an strange issue when trying to edit inline my model on the Django admin. Some of the models works properly and others not. It doesn't give any error but the data is not saved. For example: class Provincia(models.Model): nombre = models.CharField(maxlength=50, unique = Tru