diff --git a/opentech/apply/funds/templates/funds/includes/review_table.html b/opentech/apply/funds/templates/funds/includes/review_table.html index 52f1dd015b7510d70984df06597d673357948740..a81124e62f1c8ecf2f5bbd30cc263f54bdad400b 100644 --- a/opentech/apply/funds/templates/funds/includes/review_table.html +++ b/opentech/apply/funds/templates/funds/includes/review_table.html @@ -17,5 +17,6 @@ <th>{{ object.reviews.reviewers_score|default_if_none:'-' }}</th> </tr> {% include 'funds/includes/review_table_row.html' with reviews=reviewer_reviews %} + {# Add logic for showing missing reviews #} {% include 'funds/includes/review_table_row.html' with reviews=object.missing_reviewer_reviews missing=True %} </table> diff --git a/opentech/apply/funds/templates/funds/includes/review_table_row.html b/opentech/apply/funds/templates/funds/includes/review_table_row.html index dd1d08b3dc518129b4e37a869e729c9c4bcb9906..82da56205adb16417d6f81ca628052c9b8723fb1 100644 --- a/opentech/apply/funds/templates/funds/includes/review_table_row.html +++ b/opentech/apply/funds/templates/funds/includes/review_table_row.html @@ -1,5 +1,5 @@ {% for review in reviews %} - <tr> + <tr class="{% if missing %}no-response{% endif %}"> {% if missing %} <td>{{ review }}</td> <td>-</td>