{% load i18n %} {% load cove_tags %}
{% if validation_error_locations_length and errorList|length > validation_error_locations_length %} {% if validation_error_locations_sample %} {% blocktrans %}Showing a random {{validation_error_locations_length}} locations for this error.{% endblocktrans %} {% else %} {% blocktrans %}Showing the first {{validation_error_locations_length}} locations for this error.{% endblocktrans %} {% endif %} {% endif %}
{% trans 'Value' %} | {% trans 'Location' %} | {% if file_type == 'xlsx' or file_type == 'csv' or file_type == 'ods' %}{% trans 'Spreadsheet Location' %} | {% endif %} {% else %} {% if file_type == 'json' %}{% trans 'Location' %} | {% else %}{% trans 'Spreadsheet Location' %} | {% endif %} {% endif %}
---|---|---|---|---|
{{item.value}} | {% if item.line %} {% trans 'Path:' %} {{item.path}} {% trans 'Line:' %} {{item.line}} {% else %} {{ item.path }} {% endif %} | {% if file_type == 'xlsx' or file_type == 'csv' or file_type == 'ods' %}Sheet: {{item.sheet}} Row: {{item.row_number}} {% if item.header %} Header: {{item.header}} {% endif %} | {% endif %} {% else %} {% if file_type == 'json' %}{{item}} | {% else %}Sheet: {{item.sheet}} Row: {{item.row_number}} {% if item.header %} Header: {{item.header}} {% endif %} | {% endif %} {% endif %}