On 9/4/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > For some reason, even though there are 11 records in the database for > this table the admin interface is only showing me one of them. > Underneath that one entry is message text saying "11 schedules", so I > know the DB API is finding them, I just don't know why it's not > displaying them.
That's very peculiar...I'll try to recreate the problem here. BTW, you don't need this line: id = meta.AutoField(primary_key=True) Django will put that in automatically if there's no primary_key set. > Also, if I click on "Job" link to sort by that field, I get this: > [..] > IndexError: list index out of range To fix this immediately, add an "ordering" parameter to both the Schedule and Job models. Of course, it should work without having to do that, so I'll look into fixing this... Thanks for the heads-up. Generally we put ordering on every model out of habit, so we've never run into this one. Adrian -- Adrian Holovaty holovaty.com | djangoproject.com | chicagocrime.org