{% extends "base.html" %} {% load i18n %} {% block content %}
| {% trans "ID" %} | {{ task.id }} | |
|---|---|---|
| {% trans "Method" %} | {{ task.method }} | |
| {% trans "Args" %} | {% for arg in task.get_args_display.items %}{{ arg.0 }}: {{ arg.1 }} {% endfor %} |
|
| {% trans "Label" %} | {{ task.label }} | |
| {% trans "State" %} | {{ task.get_state_display }} | |
| {% trans "Cancelled by" %} | {% if task.canceled_by %}{{ task.canceled_by }} | {% else %}Unavailable | {% endif %}
| {% trans "Worker" %} | {% if task.worker %}{{ task.worker }}{% endif %} | |
| {% trans "Channel" %} | {{ task.channel }} | |
| {% trans "Arch" %} | {{ task.arch }} | |
| {% trans "Exclusive" %} | {{ task.exclusive }} | |
| {% trans "Priority" %} | {{ task.priority }} | |
| {% trans "Waiting" %} | {{ task.waiting }} | |
| {% trans "Awaited" %} | {{ task.awaited }} | |
| {% trans "Owner" %} | {{ task.owner }} | |
| {% trans "Resubmitted by" %} | {{ task.resubmitted_by }} | |
| {% trans "Resubmitted from" %} | #{{ task.resubmitted_from.id }} task | |
| {% trans "Created" %} | {% if task.dt_created %}{{ task.dt_created|date:"Y-m-d H:i:s" }}{% endif %} | |
| {% trans "Started" %} | {% if task.dt_started %}{{ task.dt_started|date:"Y-m-d H:i:s" }}{% endif %} | |
| {% trans "Finished" %} | {% if task.dt_finished %}{{ task.dt_finished|date:"Y-m-d H:i:s" }}{% endif %} | |
| {% trans "Spent time" %} | {{ task.get_time_display }} | |
| {% trans "Comment" %} | {% if task.comment %}{{ task.comment }}{% endif %} |
{{ task.result }}
{% if logs %}