From 711ca826cd936662a246fcc2a566dac00dccdecd Mon Sep 17 00:00:00 2001 From: soumendrak Date: Mon, 2 Oct 2023 14:42:15 +0530 Subject: [PATCH] fix(, proposal-list--votes-dashboard.html):Display reviewers who have voted only --- .../partials/proposal-list--votes-dashboard.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/junction/templates/proposals/partials/proposal-list--votes-dashboard.html b/junction/templates/proposals/partials/proposal-list--votes-dashboard.html index 2c435db4..d8ccd816 100644 --- a/junction/templates/proposals/partials/proposal-list--votes-dashboard.html +++ b/junction/templates/proposals/partials/proposal-list--votes-dashboard.html @@ -38,12 +38,13 @@

{% for vote in proposal|get_reviewers_vote_details:request.user %}
  • - {{ vote.voter_nick }}: - {{ vote.vote_value }} - {% if vote.vote_comment %} - "{{ vote.vote_comment }}" + {% if vote.vote_value %} + {{ vote.voter_nick }}: + {{ vote.vote_value }} + {% if vote.vote_comment %} + "{{ vote.vote_comment }}" + {% endif %} {% endif %} -
  • {% endfor %}