diff --git a/opentech/apply/funds/templates/funds/tables/table.html b/opentech/apply/funds/templates/funds/tables/table.html
index 66599d9371b55d206e44642fe6df8ed0f9000a23..3111c4aef4aaa2434bb32dba3e24c9394b3f0314 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>