From d17fa1d42da5d55a7adf9db47b7c5fbc02e5a48c Mon Sep 17 00:00:00 2001 From: Erin Mullaney <erin.mullaney@torchbox.com> Date: Wed, 20 Feb 2019 09:31:30 -0500 Subject: [PATCH] #962 display reviewer opinion on review detail, role icon is TODO --- opentech/apply/review/templates/review/review_detail.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/opentech/apply/review/templates/review/review_detail.html b/opentech/apply/review/templates/review/review_detail.html index 0e0c909c5..36be86240 100644 --- a/opentech/apply/review/templates/review/review_detail.html +++ b/opentech/apply/review/templates/review/review_detail.html @@ -6,6 +6,13 @@ <div class="admin-bar__inner"> <h1 class="beta heading heading--no-margin heading--bold">Review</h1> <h5>For <a href="{% url "funds:submissions:detail" review.submission.id %}">{{ review.submission.title }}</a> by {{ review.author }} at {{ review.updated_at|date:"Y-m-d" }}</h5> + + {% for opinion in review.opinions.all %} + <div> + {# TODO: role icon #} {{ opinion.author }} {{ opinion.get_opinion_display }}s + </div> + {% endfor %} + </div> </div> -- GitLab