{% extends 'base.html' %} {% load helpers %} {% load form_helpers %} {% load log_levels %} {% load static %} {% block title %}{{ script }}{% endblock %} {% block content %}

{{ script }}

{{ script.Meta.description }}

Run: {{ result.created }} {% if result.completed %} Duration: {{ result.duration }} {% else %} {% endif %} {% include 'extras/inc/job_label.html' with result=result %}

{% if result.completed and result.status != 'errored' %}
Script Log
{% for log in result.data.log %} {% empty %} {% endfor %}
Line Level Message
{{ forloop.counter }} {% log_level log.status %} {{ log.message|render_markdown }}
No log output
{% if execution_time %} {% endif %}
{% elif result.stats == 'errored' %}
Error during script execution
{% else %}
Pending results
{% endif %}
{{ result.data.output }}

{{ script.filename }}

{{ script.source }}
{% endblock %} {% block javascript %} {% endblock %}