BertrandBordage / django-super-inlines

Adds useful features to inlines, such as the ability to nest them.
BSD 3-Clause "New" or "Revised" License
75 stars 8 forks source link

display "add another" link for foreign key in inline model #5

Closed sky-chen closed 9 years ago

sky-chen commented 9 years ago

Suppose a House model has a foreign key to a builder company:

class House(models.Model):
    builder = models.ForeignKey('Company')

It would be nice to still have an "add another" link next for builder, just like django admin has to offer. image