{%extends "base.html"%} {%from "errors_display.html" import errors_display%} {%from "populations/macro-display-population-card.html" import display_population_card%} {%block title%}Parse Results{%endblock%} {%block contents%}

{{job_name}}: parse results

{%if user_aborted%} Job aborted by the user {%endif%} {{errors_display(errors, "No errors found in the file", "We found the following errors", True)}} {%if errors | length == 0 and not user_aborted %}
{%endif%} {%if errors | length > 0 or user_aborted %}
Go back {%endif%}
{%endblock%} {%block sidebarcontents%} {{display_population_card(species, population)}} {%endblock%}