From b1b62854e9b3eba4b71bfcce47f3fc75670b9edc Mon Sep 17 00:00:00 2001 From: Erin Mullaney <erin.mullaney@torchbox.com> Date: Wed, 20 Feb 2019 08:44:57 -0500 Subject: [PATCH] #962 display opinions in expanded submission list --- opentech/apply/funds/templates/funds/tables/table.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/opentech/apply/funds/templates/funds/tables/table.html b/opentech/apply/funds/templates/funds/tables/table.html index 66599d937..3111c4aef 100644 --- a/opentech/apply/funds/templates/funds/tables/table.html +++ b/opentech/apply/funds/templates/funds/tables/table.html @@ -39,6 +39,12 @@ <span class="list__item--reviewer-name">{{ review.author }}</span> <span class="list__item list__item--reviewer-outcome">{{ review.get_recommendation_display }}</span> </li> + {% for opinion in review.opinions.all %} + <li class="list__item list__item--reviewer"> + <span class="list__item--reviewer-name">{{ opinion.author }}</span> + <span class="list__item list__item--reviewer-outcome">{{ opinion.get_opinion_display }}</span> + </li> + {% endfor %} {% endfor %} </ul> </td> -- GitLab