blob: 358c5e846caef8c71993bbb1a33354f7bf4b8b7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{%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>
{%if user_aborted%}
<span class="alert-warning">Job aborted by the user</span>
{%endif%}
{{errors_display(errors, "No errors found in the file", "We found the following errors")}}
{%endblock%}
|