diff --git a/cps/tasks_status.py b/cps/tasks_status.py index 49feb67c2..268200d4e 100644 --- a/cps/tasks_status.py +++ b/cps/tasks_status.py @@ -82,6 +82,7 @@ def render_task_status(tasklist): ret['task_id'] = task.id ret['stat'] = task.stat ret['is_cancellable'] = task.is_cancellable + ret['error'] = task.error rendered_tasklist.append(ret) diff --git a/cps/templates/tasks.html b/cps/templates/tasks.html index 4d645aa52..83d4e8045 100644 --- a/cps/templates/tasks.html +++ b/cps/templates/tasks.html @@ -16,6 +16,7 @@ {{_('Progress')}} {{_('Run Time')}} {{_('Start Time')}} + {{_('Message')}} {% if current_user.role_admin() %} {{_('Actions')}} {% endif %}