A bug in 1.0 makes unique_together constraints fail at database level
(resulting in exceptions) instead of being caught at form validation
level.
The bug is detailed in
http://code.djangoproject.com/ticket/8882
I expect that the model validation implementation problems Honza has
are also related to this:
http://code.djangoproject.com/ticket/6845#comment:30
Another problem is the unique constraint -- if the inline formset
contains several forms with an colliding unique field that does not
yet exist in the db, validation fails as the uniqueness checks are
done before saving them in bulk (i.e. no validation in between the
individual forms).
Before I dig into this deeper, is someone already working on this or
does have an idea how to tackle this? Brosner?