{% extends '_base_list.html' %} {% load i18n %} {% load static %} {% block content_left_head %} {% endblock %} {% block table_search %}
to
{% endblock %} {% block table_head %} {% trans 'Name' %} {% trans 'Run times' %} {% trans 'Versions' %} {% trans 'Hosts' %} {% trans 'Success' %} {% trans 'Date' %} {% trans 'Time' %} {% trans 'Action' %} {% endblock %} {% block table_body %} {% for object in task_list %} {{ object.name }} {{ object.history_summary.failed }}/{{ object.history_summary.success}}/{{ object.history_summary.total}} {{ object.adhoc.all | length}} {{ object.latest_adhoc.hosts | length}} {% if object.latest_history %} {% if object.latest_history.is_success %} {% else %} {% endif %} {% endif %} {{ object.latest_history.date_start }} {% if object.latest_history %} {{ object.latest_history.timedelta|floatformat }} s {% endif %} {% trans "Delete" %} {% endfor %} {% endblock %} {% block custom_foot_js %} {% endblock %}