{%extends "base.html"%} {%block title%}Parse Results{%endblock%} {%block contents%}

{{job_name}}: parse results

{%if errors | length == 0 %} No errors found in the file {%else %}

We found the following errors

{%for error in errors%} {%endfor%}
line number column(s) error error message
{{error["line"]}} {%if isinvalidvalue(error):%} {{error.column}} {%else: %} {{error.columns}} {%endif %} {%if isinvalidvalue(error):%} Invalid Value {%else: %} Duplicate Header {%endif %} {{error["message"]}}
{%endif%} {%endblock%}