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