{% load helpers %} {% load custom_links %} {% load form_helpers %} {% load ajax_table %} {% load render_table from django_tables2 %} {% load log_levels %} {% load plugins %} {% load static %}
Summary of Results
{% if result.files.exists %} {% endif %}
Job Description {{ result.job_model.description | render_markdown | placeholder }}
Status {% include 'extras/inc/job_label.html' with result=result %}
Started at {{ result.date_created | placeholder }}
User {{ result.user | placeholder }}
Duration {% if result.date_created and not result.date_done %} {% else %} {{ result.duration | placeholder}} {% endif %}
Return Value {% if result.date_created and not result.date_done %} {% else %} {% if result.result %}
{{ result.result | render_json }}
{% else %} {{ result.result | placeholder }} {% endif %} {% endif %}
File Output(s)
Logs
{% if result and result.pk %} {% ajax_table "log_table" "extras:jobresult_log-table" pk=result.pk %} {% endif %}