{% extends 'generic/object_detail.html' %} {% load helpers %} {% load custom_links %} {% load form_helpers %} {% load log_levels %} {% load plugins %} {% load static %} {% load buttons %} {% block breadcrumbs %}
  • Job Results
  • {% if result.job_model is not None %}
  • {{ result.job_model.grouping }}
  • {{ result.job_model }}
  • {% elif associated_record %} {% if associated_record.name %}
  • {{ associated_record.name }}
  • {% else %}
  • {{ associated_record }}
  • {% endif %} {% elif job %}
  • {{ job.class_path }}
  • {% else %}
  • {{ result.name }}
  • {% endif %}
  • {{ result.created }}
  • {% endblock breadcrumbs %} {% block buttons %} {% if perms.extras.run_job %} {% if result.job_model and result.task_kwargs %} Re-Run {% elif result.job_model is not None %} Run {% endif %} {% endif %} Export {{ block.super }} {% endblock buttons %} {% block title %} Job Result: {% if result.job_model is not None %} {{ result.job_model }} {% elif associated_record %} {{ associated_record }} {% elif job %} {{ job }} {% else %} {{ result.name }} {% endif %} {% endblock %} {% block extra_nav_tabs %}
  • Additional Data
  • {% if result.data.output %}
  • Output
  • {% endif %} {% endblock %} {% block content_full_width_page %} {% include 'extras/inc/jobresult.html' with result=result log_table=log_table %} {% endblock content_full_width_page %} {% block extra_tab_content %}
    Job Positional Arguments
    {% include 'extras/inc/json_data.html' with data=result.task_args format="json" %}
    Job Keyword Arguments
    {% include 'extras/inc/json_data.html' with data=result.task_kwargs format="json" %}
    Job Celery Keyword Arguments
    {% include 'extras/inc/json_data.html' with data=result.celery_kwargs format="json" %}
    Return Data
    {% include 'extras/inc/json_data.html' with data=result.result format="json" %}
    File Output(s)
    Traceback
    {% include 'extras/inc/json_data.html' with data=result.traceback format="python" %}
    {% if result.data.output %}
    {{ result.data.output }}
    {% endif %} {% endblock extra_tab_content %} {% block javascript %} {{ block.super }} {% include 'extras/inc/jobresult_js.html' with result=result %} {% endblock %}