{% extends 'generic/object_detail.html' %} {% load buttons %} {% load custom_links %} {% load job_buttons %} {% load helpers %} {% load perms %} {% load plugins %} {% load static %} {% load tz %} {% load ui_framework %} {% load i18n %} {% load render_table from django_tables2 %} {% block title %}Job: {{ object.name }}{% endblock %} {% block breadcrumbs_wrapper %} {% endblock breadcrumbs_wrapper %} {% block header %}
{% block buttons %} {% plugin_buttons object %} {% render_detail_view_extra_buttons %} {% block extra_buttons %} {% if request.user|can_change:object %} Execute Job {% endif %} {% if nautoboted %} {% if request.user|can_change:object %} Edit Job {% endif %} {% if request.user|can_delete:object %} Delete Job {% endif %} {% endif %} {% endblock extra_buttons %} {% endblock buttons %}
{% include 'inc/created_updated.html' %} {% endblock header %} {% block content %} {% if active_tab == 'logs' %}
{% if logs_table %} {% render_table logs_table %} {% else %}

{% trans "No logs found for this job." %}

{% endif %}
{% else %}
{% trans "Name" %} {{ object.name }}
{% trans "Platforms" %} {{ object.platforms|join:", " }}
{% trans "Commands" %} {{ object.commands|join:"\n" }}
{% endif %} {% endblock content %}