[Answered ]-Django ManytoMany and through

2👍

book_set gives you the Book record, not the BookRating one. You can get that via the standard reverse relationship:

request.user.bookratings_set.all()

That will have the rating field, plus the book ForeignKey to get the Book.

Leave a comment