Re: Admin Interface and Foreign Keys

2005-09-05 Thread [EMAIL PROTECTED]
Thanks for looking into it. I've added the ordering to the Job table, and that seems to fix it when I'm sorting by "Job". However, I'm still only getting 1 record being displayed when it says there are 11 (and I know there are that many in the database). Let me know what other information you nee

Re: Admin Interface and Foreign Keys

2005-09-05 Thread Adrian Holovaty
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

Admin Interface and Foreign Keys

2005-09-04 Thread [EMAIL PROTECTED]
Hi Folks, I have a table in my model as follows: --- class Schedule(meta.Model): id = meta.AutoField(primary_key=True) schedule = meta.CharField(maxlength=255, help_text='This takes a Cron-style format (min hour dom mon dow)') job = meta.ForeignKe