Models:
class Author(models.Model):
name = models.CharField(max_length=150)
age = models.IntegerField()
class Book(models.Model):
title = models.CharField(max_length=150)
number = models.IntegerField()
author = models.ManyToManyField(Author)
Goal:
http://feb.imghost.us/HaAo.png
How can I create this form? (should allow to add many Authors before I save whole form)