You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've agreed with @radix0000 that I'll edit the messages in the template on a branch which radix0000 will create. (The branch will be deployed and usable so that I can check that I don't break the template with any edits.)
@radix0000 - Here is the edit for the first message in the template:
From:
<td>
{% trans 'The statement has an identifier scheme which is not valid.' %}
</td>
<td>
{% trans 'Invalid Scheme' %}: {{ additional_check.scheme }}
</td>
<td>
{{ additional_check.entity_statement }}
</td>
To:
<td>
{% blocktrans %}<code>scheme</code> is not valid. Check the BODS documentation for guidance on identifiers. {%endblocktrans%}
</td>
<td>
<code>scheme</code>: {{ additional_check.scheme }}
</td>
<td>
{{ additional_check.entity_statement }}
</td>
Currently this is how the validation errors look:
The additional checks are much more muted and do not share the same message style and formatting:
We should bring the content and style of the additional checks into line with the validation errors.
The text was updated successfully, but these errors were encountered: