Skip to content

Commit

Permalink
additional checks edit: up to line 106
Browse files Browse the repository at this point in the history
  • Loading branch information
kd-ods authored Oct 24, 2024
1 parent a3358ba commit 61ca49a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions cove_bods/templates/cove_bods/additional_checks_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{% if additional_check.type == 'entity_identifier_scheme_not_known' %}
<tr>
<td>
{% blocktrans %}<code>scheme</code> is not valid. Check the BODS documentation for guidance on identifiers. {%endblocktrans%}
{% blocktrans %}<code>scheme</code> is not valid. Check the BODS documentation for guidance on identifiers. {% endblocktrans %}
</td>
<td>
<code>scheme</code>: {{ additional_check.scheme }}
Expand All @@ -25,7 +25,7 @@
{% elif additional_check.type == 'entity_statement_out_of_order' %}
<tr>
<td>
{% blocktrans %}<code>Entity statement</code> not in correct order. Check that the Entity statement is placed in the array before any statement referencing it.{%endblocktrans%}
{% blocktrans %}<code>Entity statement</code> not in correct order. Check that the Entity statement is placed in the array before any statement referencing it.{% endblocktrans %}
</td>
<td>
<code>{% trans 'Entity statement' %}</code>: {{ additional_check.entity_statement_out_of_order }}
Expand All @@ -37,7 +37,7 @@
{% elif additional_check.type == 'person_statement_out_of_order' %}
<tr>
<td>
{% blocktrans %}<code>Person statement</code> not in correct order. Check that the Person statement is placed in the array before any statement referencing it.{%endblocktrans%}
{% blocktrans %}<code>Person statement</code> not in correct order. Check that the Person statement is placed in the array before any statement referencing it.{% endblocktrans %}
</td>
<td>
<code>{% trans 'Person statement' %}</code>: {{ additional_check.person_statement_out_of_order }}
Expand All @@ -49,7 +49,7 @@
{% elif additional_check.type == 'entity_statement_not_used_in_ownership_or_control_statement' %}
<tr>
<td>
{% blocktrans %}<code>Entity statement</code> is orphaned. Check whether it should be the <code>subject</code> or <code>interestedParty</code> of a relationship.{%endblocktrans%}
{% blocktrans %}<code>Entity statement</code> is orphaned. Check whether it should be the <code>subject</code> or <code>interestedParty</code> of a relationship.{% endblocktrans %}
</td>
<td>
</td>
Expand All @@ -60,7 +60,7 @@
{% elif additional_check.type == 'person_statement_not_used_in_ownership_or_control_statement' %}
<tr>
<td>
{% trans 'This Person Statement is not used in any ownership or control statements.' %}
{% blocktrans %}<code>Person statement</code> is orphaned. Check whether it should be the <code>interestedParty</code> of a relationship.{% endblocktrans %}
</td>
<td>
</td>
Expand All @@ -71,10 +71,10 @@
{% elif additional_check.type == 'entity_statement_missing' %}
<tr>
<td>
{% trans 'This Entity Statement is referenced from an ownership or control statement, but it is missing.' %}
{% blocktrans %}<code>Entity statement</code> is missing. Check whether an Entity statement is incorrectly referenced from <code>interestedParty</code> or <code>subject</code>, or whether an Entity statement is missing.{% endblocktrans %}
</td>
<td>
{% trans 'Entity that is missing' %}: {{ additional_check.entity_statement_missing }}
<code>{% trans 'Entity statement' %}</code>: {{ additional_check.entity_statement_missing }}
</td>
<td>
{{ additional_check.seen_in_ownership_or_control_statement }}
Expand All @@ -83,10 +83,10 @@
{% elif additional_check.type == 'person_statement_missing' %}
<tr>
<td>
{% trans 'This Person Statement is referenced from an ownership or control statement, but it is missing.' %}
{% blocktrans %}<code>Person statement</code> is missing. Check whether a Person statement is incorrectly referenced from <code>interestedParty</code>, or whether a Person statement is missing.{% endblocktrans %}
</td>
<td>
{% trans 'Person that is missing' %}: {{ additional_check.person_statement_missing }}
<code>{% trans 'Person statement' %}</code>: {{ additional_check.person_statement_missing }}
</td>
<td>
{{ additional_check.seen_in_ownership_or_control_statement }}
Expand All @@ -95,10 +95,10 @@
{% elif additional_check.type == 'duplicate_statement_id' %}
<tr>
<td>
{% trans 'This statement ID has been used more than once.' %}
{% blocktrans %}<code>statementId</code> value used in multiple statements. Different statements should not have the same <code>statementId</code> value.{% endblocktrans %}
</td>
<td>
{% trans 'Statement ID' %}: {{ additional_check.id }}
<code>{% trans 'statementId' %}</code>: {{ additional_check.id }}
</td>
<td>
&nbsp;
Expand Down

0 comments on commit 61ca49a

Please sign in to comment.