I have a author model and a books model. A user can modify properties of all the books from a given author. I want to be able to display errors for each individual book rath
Assuming the book is a form you could do:
{% for b in authorsbooks %} {{b.errors}} {% endfor %}