{% extends "base.html" %} {% block app_content %}

Job Status {{ job.status[1] }}

{% if job.state.error %} {% endif %} {% if job.state.progress %}

Routing from {{ job.state.progress.from }} to {{ job.state.progress.to }} using {{ job.state.progress.mode }}

Current system: {{ job.state.progress.system }}

Search queue size: {{"{:,}".format(job.state.progress.queue_size) }}

Number of systems checked: {{"{:,}".format(job.state.progress.n_seen) }} ({{job.state.progress.prc_seen|round(2)}} %)

Estimated time remaining: {{job.t_rem}}

Search Depth: {{job.state.progress.depth}}

{{job.state.progress.prc_done|round(2)}} %
{% endif %} {% if job.state.result %}

Result

Map

Jumps

{% for sys in job.route %} {% endfor %}
Num Body Type Distance from arrival Jump distance
{{sys.num}} {{sys.body}} {{sys.star_type}} {{"{:,}".format(sys.distance)}} Ls {{"{:,}".format(sys.jump_dist|round(2))}} Ly
Total Distance {{"{:,}".format(job.route|sum(attribute='jump_dist')|round(2))}} Ly
{% endif %}
{% endblock %}