ForeignKey never showing up in admin page.

But, oddly, I can get the model-form to show up in the OTHER models
admin form !!!
Set edit_inline in "FaqEntry" and *poof* ... the 'add entry' forms
show up when you are in the FaqCategory admin add-page !!!


Simplest darned model/ForeignKey example known to mankind, also.
Any ideas what the issue is?

django 0.96
-----------------------

FaqCategory(models.Model)
   name = models.CharField(...)
   description = models.CharField(...)

FaqEntry(models.Model):
   question = models.CharField(...)
   answer = models.CharField(...)
   category = models.ForeignKey(FaqCategory)


I'll take a break from this and go learn newforms now while I'm pissed
at this stupid, not-working silliness...

--joe


--~--~---------~--~----~------------~-------~--~----~
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