I have the following models:
class Bill(models.Model): date = models.DateTimeField(_(\"Date of bill\"),null=True,blank=True) class Item(models.Model):
The code in Jordan's answer didn't work for me. I posted my own question about this, which I believe I've now solved. The first argument to inlineformset_factory should be Book, not BookForm.