Skip to content

Commit

Permalink
additional_checks_table.html: Add message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed (ODSC) committed Sep 25, 2024
1 parent c5444a8 commit ea1c4bb
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions cove_bods/templates/cove_bods/additional_checks_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,11 @@
<tr>
<td>
{% if schema_version_used == '0.2' %}
{% blocktrans %}This Person Statement has some PEP details with missing info but their status has been declared as True.{%endblocktrans%}
{% blocktrans %}This Person Statement has some PEP details with missing info but
their status has been declared as True.{%endblocktrans%}
{% else %}
{% blocktrans %}This Person Statement has a missingInfoReason for PEP status details, so PEP status should be declared as 'unknown'.{%endblocktrans%}
{% blocktrans %}This Person Statement has a missingInfoReason for PEP status
details, so PEP status should be declared as 'unknown'.{%endblocktrans%}
{% endif %}
</td>
<td>
Expand All @@ -407,6 +409,18 @@
{{ additional_check.statement }}
</td>
</tr>
{% elif additional_check.type == "statement_annotation_creation_date_is_future_date" %}
{# Currently this applies to 0.4+ #}
<tr>
<td>
{% blocktrans %}The creation date of an annotation on this Statement is in the future.{%endblocktrans%}
</td>
<td>
</td>
<td>
{{ additional_check.statement }}
</td>
</tr>
{% endif %}
{% endfor %}
{% if not statistics.count_ownership_or_control_statement_with_at_least_one_interest_beneficial %}
Expand Down

0 comments on commit ea1c4bb

Please sign in to comment.