{% extends 'base.html' %} {% load helpers %} {% load form_helpers %} {% load log_levels %} {% load static %} {% block header %}

{% block title %} {% if job %}{{ job }}{% else %}{{ result.name }}{% endif %} - Job Result {% endblock %}

{% if job %}

{{ job.description }}

{% endif %} {% endblock %} {% block content %}
{% include 'extras/inc/jobresult.html' with result=result %}
{% if result.data.output %}
{{ result.data.output }}
{% endif %} {% if job %}

{{ job.filename }}

{{ job.source }}
{% endif %}
{% endblock %} {% block javascript %} {% include 'extras/inc/jobresult_js.html' with result=result %} {% endblock %}