{% load i18n sizeformat %}

{% trans "Job Execution Overview" %}

{% trans "Status" %}
{{ job_execution.info.status }}
{% trans "Id" %}
{{ job_execution.id }}
{% trans "Job Id" %}
{{ job_execution.job_id }} ({{ object_names.job_name }})
{% trans "Input Id" %}
{{ job_execution.input_id }} ({{ object_names.input_name }})
{% trans "Output Id" %}
{{ job_execution.output_id }} ({{ object_names.output_name }})
{% trans "Cluster Id" %}
{{ job_execution.cluster_id }} ({{ object_names.cluster_name }})
{% trans "Last Updated" %}
{{ job_execution.updated_at }}
{% trans "Started" %}
{{ job_execution.start_time }}
{% trans "Ended" %}
{{ job_execution.end_time }}
{% trans "Return Code" %}
{{ job_execution.return_code }}
{% trans "Oozie Job Id" %}
{{ job_execution.oozie_job_id }}
{% trans "Created" %}
{{ job_execution.created_at }}
{% trans "Tenant Id" %}
{{ job_execution.tenant_id }}
{% trans "Job Configuration" %}
{% for group, vals in job_execution.job_configs.iteritems %}
  • {{ group }}: {%if group == "args" %}
      {% for val in vals %}
    • {{ val }}
    • {% endfor %}
    {% else %}
      {% for key, val in vals.iteritems %}
    • {{ key }} = {{ val }}
    • {% endfor %}
    {% endif %}
{% endfor %}