diff --git a/opentech/apply/review/templates/review/review_detail.html b/opentech/apply/review/templates/review/review_detail.html
index 0e0c909c50804e9b8fe05d60a4a7e5092d08b68e..36be8624007eea2d350ca28780390d9bda3ee173 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>