We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently when displaying the ratings of a given book, we calculate the average rating of the book from within the book view as shown here
It would make more sense for us to have an average_rating function which is a @property function on the Edition model.
average_rating
@property
Edition
Then average_rating would return the query (currently ....aggregate(Avg("rating"))["rating__avg"]) which produces the average rating of the book.
....aggregate(Avg("rating"))["rating__avg"]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Currently when displaying the ratings of a given book, we calculate the average rating of the book from within the book view as shown here
It would make more sense for us to have an
average_rating
function which is a@property
function on theEdition
model.Then
average_rating
would return the query (currently....aggregate(Avg("rating"))["rating__avg"]
) which produces the average rating of the book.The text was updated successfully, but these errors were encountered: