{% extends 'qcg/base.html' %} {% load staticfiles bootstrap3 query_string qcg_utils %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %} {% block container %}

{% block title %}Lista zadań{% endblock %}

{% if selected_filters %}
Wyczyść wszystkie filtry Wybrane filtry: {% for label, param, val in selected_filters %} {{ label }}  {% endfor %}

{% endif %} {# #} {% regroup page by job as jobs %} {% for job in jobs %} {% ifequal job.list|length 1 %} {% with job.list.0 as task %} {% endwith %} {% else %} {% for task in job.list %} {% endfor %} {% endifequal %} {% endfor %}
Opis Wysłane Start Koniec Status Host Uwagi
{# {{ task }}#} {{ task.note }} {{ task.submission_time|timesince }} temu {{ task.start_time|date:"CUSTOM_DATETIME_FORMAT" }} {{ task.finish_time|date:"CUSTOM_DATETIME_FORMAT" }} {{ task.get_status_display }} {{ task.short_host_names|join:', ' }} szczegóły ›
{# {{ job.grouper }}#} {{ job.grouper.note }} {{ job.grouper.submission_time|timesince }} temu - {{ job.grouper.finish_time|date:"CUSTOM_DATETIME_FORMAT" }} {{ job.grouper.get_status_display }} - szczegóły ›
{# {{ task }}#} {{ task.note }} {{ task.submission_time|timesince }} temu {{ task.start_time|date:"CUSTOM_DATETIME_FORMAT" }} {{ task.finish_time|date:"CUSTOM_DATETIME_FORMAT" }} {{ task.get_status_display }} {{ task.short_host_names|join:', ' }} szczegóły ›
{% if not page %}
Brak zadań spełniających wybrane kryteria
{% endif %} {% endblock container %}