{% extends "base.html" %} {% block title %}Job Details - {{ task.name }} - QuickScheduler{% endblock %} {% block content %}

Job Details - {{ task.name }}

Job Information
Job ID
{{ job.id }}
Status
{{ job.status }}
Start Time
{{ job.start_time.strftime('%Y-%m-%d %H:%M:%S') if job.start_time else '-' }}
End Time
{{ job.end_time.strftime('%Y-%m-%d %H:%M:%S') if job.end_time else '-' }}
Duration
{{ job.duration if job.duration else '-' }}
Exit Code
{{ job.exit_code if job.exit_code is not none else '-' }}
Command Information
Command
{{ task.command }}
Working Directory
{{ task.working_directory }}
Log Filename
{{ job.log_file }}
Quick Actions
View Full Log {% if job.status == 'running' %} {% endif %}
{% if job.output %}
Job Output
{{ job.output }}
{% endif %} {% endblock %}