Back to Netbox

Script Result

netbox/templates/extras/htmx/script_result.html

4.6.61.2 KB
Original Source

{% load helpers %} {% load log_levels %} {% load i18n %}

{% if job.started %} {% trans "Started" %}: {{ job.started|isodatetime }} {% elif job.scheduled %} {% trans "Scheduled for" %}: {{ job.scheduled|isodatetime }} {% else %} {% trans "Created" %}: {{ job.created|isodatetime }} {% endif %} {% if job.completed %} {% trans "Duration" %}: {{ job.duration }} {% endif %} {% badge job.get_status_display job.get_status_color %}

{% if job.completed %} {% if tests %} {# Summary of test methods #}

{% trans "Test Summary" %}

{% for test, data in tests.items %} | {{ test }} | {{ data.success }}{{ data.info }}{{ data.warning }}{{ data.failure }} | {% endfor %}

{% endif %} {% if table %}

{% trans "Log" %}

{% endif %} {# Script output. Legacy reports will not have this. #} {% if 'output' in job.data %}

{% trans "Output" %} {% if job.completed %} {% trans "Download" %} {% copy_content "job_data_output" %} {% endif %}

{% if job.data.output %}

{{ job.data.output }}

{% else %} {% trans "None" %} {% endif %} {% endif %} {% elif job.started %} {% include 'extras/inc/result_pending.html' %} {% endif %}