From fe58882f0b4299f55650fdf77c2085c42ed0a076 Mon Sep 17 00:00:00 2001 From: maxime_senza <maxime@happy-dev.fr> Date: Fri, 8 May 2020 16:04:09 +0200 Subject: [PATCH] testing views total_votes --- djangoldp_polls/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangoldp_polls/views.py b/djangoldp_polls/views.py index 5202515..52d91f6 100644 --- a/djangoldp_polls/views.py +++ b/djangoldp_polls/views.py @@ -21,7 +21,7 @@ class TotalVotes(APIView) : #calcute the number of votes per choice for choice in vote.chosenOption.userVote.all(): #get the number of voter per option and count them - total_votes = votes.filter(name=choice).count() + total_votes = votes.filter(userVote=choice).count() choices.append((choice.name, total_votes)) # return response with choices in content -- GitLab