{% extends "isearch/base.html" %} {% import "isearch/include/macros.html" as macros %} {% block title %}Список Джобов{% endblock %} {% block statistics_active %}active{% endblock %} {% block container %}
{% for job in jobs %} {% endfor %}
Имя Статус Начало Прод-ость Сущность Сообщение
{{ job.job_name }} {% call macros.render_status(job, check_swarm=True) %}{{ job.status }}{% endcall %}  {% if job.status in ('new', 'running') %}
{% endif %}
{{ job.start_time }} {{ human_delta((job.end_time or now()) - job.start_time) }} {{ job.entity }} {{ job.message }}
{% with objects=jobs %} {% include 'isearch/pager.html' %} {% endwith %} {% endblock %}