Информация за Задачата
Тип: {{ task.get_task_type_display }}
Статус: {{ task.get_status_display }}
Създадено: {{ task.created_at|date:"d F Y, H:i" }}
{% if task.started_at %}
Започнато: {{ task.started_at|date:"d F Y, H:i" }}
{% endif %}
{% if task.completed_at %}
Завършено: {{ task.completed_at|date:"d F Y, H:i" }}
{% endif %}
Брой Опити: {{ task.retry_count }}
{% if task.parameters %}
Параметри
{{ task.parameters|safe }}
{% endif %}
{% if task.result %}
Резултат
{{ task.result|safe }}
{% endif %}
{% if task.error_message %}
Грешка
✕
{{ task.error_message }}
{% endif %}