{% extends 'base.html' %} {% load static %} {% load i18n %} {% block custom_head_css_js %} {% endblock %} {% block content %}
{{ object.name }}
{% trans 'ID' %}: {{ object.id }}
{% trans 'Name' %}: {{ object.name }}
{% trans 'Date created' %}: {{ object.date_created }}
{% trans 'Total versions' %} {{ object.adhoc.all |length }}
{% trans 'Last version' %} {{ object.get_latest_adhoc.short_id }}
{% trans 'Latest run' %}: {{ object.get_latest_history.date_start }}
{% trans 'Time delta' %}: {{ object.get_latest_history.timedelta|floatformat}} s
{% trans 'Is finished' %}: {{ object.get_latest_history.is_finished|yesno:"Yes,No,Unkown" }}
{% trans 'Is success ' %}: {{ object.get_latest_history.is_success|yesno:"Yes,No,Unkown" }}
{% trans 'Conents' %}: {% for task in object.get_latest_adhoc.tasks %} {{ task.name }} : {{ task.action.module }}
{% endfor %}
{% trans 'Failed assets' %}
{% for host, msg in results.failed %} {% if forloop.first %} {% else %} {% endif %} {% empty %} {% endfor %}
{{ host }}: {{ msg }}
{% trans 'No assets' %}
{% trans 'Success assets' %}
{% for host in object.get_latest_history.summary.contacted %} {% if forloop.first %} {% else %} {% endif %} {% empty %} {% endfor %}
{{ host }}
{% trans 'No assets' %}
{% include 'users/_user_update_pk_modal.html' %} {% endblock %}