Hello, I've spent the last day or so wrestling with something that I'm sure has a very simple solution, I just haven't found it or figured it out. I've got two classes, organized like this:
class Foo(models.Model): bar = models.ForeignKey(Bar, edit_inline=models.TABULAR) start_time = models.TimeField() class Bar(models.Model): stuff = models.TextField() Using newforms, how does one get the start_time field to display on a form generated for the Bar class? It works fine in the admin, but newforms doesn't apparently know how to handle edit_inline yet. Any ideas or work arounds? Thanks. Cory --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
