{% load i18n sizeformat %} {% load url from future %}

{% trans "Job Execution Overview" %}

{% trans "Status" %}
{{ job_execution.info.status }}
{% trans "ID" %}
{{ job_execution.id }}
{% trans "Job" %}
{{ object_names.job_name }}
{% trans "Input Data Source" %}
{{ object_names.input_name }}
{% trans "Output Data Source" %}
{{ object_names.output_name }}
{% trans "Cluster" %}
{{ object_names.cluster_name }}
{% trans "Last Updated" %}
{{ job_execution.updated_at }}
{% trans "Started" context "Start time" %}
{{ job_execution.start_time }}
{% trans "Ended" context "End time" %}
{{ job_execution.end_time }}
{% trans "Return Code" %}
{{ job_execution.return_code }}
{% trans "Oozie Job ID" %}
{{ job_execution.oozie_job_id }}
{% trans "Created" context "Created time" %}
{{ job_execution.created_at }}
{% trans "Job Configuration" %}
{% for group, vals in job_execution.job_configs.iteritems %}
  • {% blocktrans %}{{ group }}:{% endblocktrans %} {%if group == "args" %}
      {% for val in vals %}
    • {{ val }}
    • {% endfor %}
    {% else %}
      {% for key, val in vals.iteritems %}
    • {{ key }} = {{ val }}
    • {% endfor %}
    {% endif %}
{% endfor %}