Model inheritance problem in admin

2008-07-14 Thread David
When I save objects from the admin pages, I get COPIES of what I'm saving. When I save them through the API, I don't get the duplicates. I'd like to know if I'm doing something wrong or misunderstanding something. Model: from django.db import models class Process(models.Model): process_name

Re: Model inheritance problem in admin

2008-07-14 Thread Malcolm Tredinnick
On Mon, 2008-07-14 at 14:46 -0700, David wrote: > When I save objects from the admin pages, I get COPIES of what I'm > saving. When I save them through the API, I don't get the duplicates. > I'd like to know if I'm doing something wrong or misunderstanding > something. You're assuming that model

Re: Model inheritance problem in admin

2008-07-14 Thread David
Thanks, Malcolm. It was great to see inheritance in the first place, and we'll just wait for newforms-admin to use an admin interface to it. On Jul 14, 5:51 pm, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Mon, 2008-07-14 at 14:46 -0700, David wrote: > > When I save objects from the admin p