{% extends "layouts/content.html" %} {% load utils %} {% block styles %} {% endblock %} {% block content %}

Multinode Job definition file - {{ job.sub_id }} download

{% if job.actual_device %}
Name
{{ job.actual_device.hostname }} (reports)
{% endif %} {% if job.requested_device_type %}
Requested type
{{ job.requested_device_type }} (reports)
{% endif %}
{% if job.is_multinode %}
{% for subjob in job.sub_jobs_list %}
{{ subjob.sub_id }} {% if '0' in subjob.sub_id and '0' not in job.sub_id %} (?) {% endif %} ({{ subjob.id }})
{% if subjob.actual_device.hostname %} on: {{ subjob.actual_device.hostname }} as: {{ subjob.device_role }}  {% else %} No device assigned as {{ subjob.device_role }}. {% endif %}
{% endfor %}
{% endif %}
Copy to clipboard

{% with job.multinode_definition|split_definition as definition_data %} {% for line in definition_data %}
{{ forloop.counter }}
{{ line.rstrip }}
{% endfor %} {% endwith %} {% endblock content %} {% block scripts %} {% endblock %}