diff --git a/opentech/apply/review/templates/review/review_list.html b/opentech/apply/review/templates/review/review_list.html index f6e14a15efb2755d7a792673d268cc2e151b9e02..7487a763ff508614413959e5e3ff19857deec10c 100644 --- a/opentech/apply/review/templates/review/review_list.html +++ b/opentech/apply/review/templates/review/review_list.html @@ -23,11 +23,11 @@ <tr class="reviews-list__tr"> <th class="reviews-list__th">{{ answers.question }}</th> {% for answer in answers.answers %} - {% ifequal answers.question "Opinions" %} + {% if answers.question == "Opinions" %} <td class="reviews-list__td">{{ answer }}</td> {% else %} <td class="reviews-list__td">{{ answer|bleach }}</td> - {% endifequal %} + {% endif %} {% endfor %} </tr> {% endfor %}