{% extends "base.html" %} {% block title %}Job #{{ job.id }} | left4me{% endblock %} {% block content %}

Job #{{ job.id }}

{% if job.state in ["queued", "running"] %}
{% endif %}
Operation{{ job.operation }}
State{{ job.state }}
User{{ owner.username if owner else "system" }}
Server{% if server %}{{ server.name }}{% else %}-{% endif %}
Created{{ job.created_at | timeago }}
Started{% if job.started_at %}{{ job.started_at | timeago }}{% else %}-{% endif %}
Finished{% if job.finished_at %}{{ job.finished_at | timeago }}{% else %}-{% endif %}
Exit code{{ job.exit_code if job.exit_code is not none else "-" }}

Job Logs


{% endblock %}