blob: 8d3935900a64701770c508a3c646a857bed809fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{%extends "base.html"%}
{%from "errors_display.html" import errors_display%}
{%block title%}Parse Results{%endblock%}
{%block contents%}
<h1 class="heading">{{job_name}}: parse results</h2>
{{errors_display(errors, "No errors found in the file", "We found the following errors")}}
{%endblock%}
|