diff options
author | Farrell Wymore <farrell.wymore@windriver.com> | 2014-04-02 12:10:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-05 14:55:29 +0100 |
commit | 396e2153a99c7ec742ec5432d471e8b0d88c0a3f (patch) | |
tree | 09dc21163410b68d76843c5d8a73d3ab6b274867 /bitbake/lib/toaster/toastergui/templates/task.html | |
parent | 10297261219d4373843b31e8aaaed094fcbcf605 (diff) | |
download | poky-396e2153a99c7ec742ec5432d471e8b0d88c0a3f.tar.gz |
bitbake: toaster: added covered task list
if a task has a 'covered' indication, the list of tasks that
covered the task are computed and displayed. amended to add tooltip.
[YOCTO #5925]
(Bitbake rev: bb05ee13f53f10988579b6238802327732041d0c)
Signed-off-by: Farrell Wymore <farrell.wymore@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/task.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/task.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/task.html b/bitbake/lib/toaster/toastergui/templates/task.html index c1504b6041..66a6695ec1 100644 --- a/bitbake/lib/toaster/toastergui/templates/task.html +++ b/bitbake/lib/toaster/toastergui/templates/task.html | |||
@@ -109,7 +109,16 @@ | |||
109 | </dt> | 109 | </dt> |
110 | <dd> | 110 | <dd> |
111 | <ul> | 111 | <ul> |
112 | <li><p class="alert-info">TODO:Covering tasks will be displayed here</p></li> | 112 | {% for t in covered_by %} |
113 | <li> | ||
114 | <a href="{%url 'task' t.build.pk t.pk%}" | ||
115 | class="task-info" | ||
116 | title="{{t.get_executed_display}} | {{t.get_outcome_display}}"> | ||
117 | {{t.recipe.name}}_{{t.recipe.version}} | ||
118 | {{t.task_name}} | ||
119 | </a> | ||
120 | </li> | ||
121 | {% endfor %} | ||
113 | </ul> | 122 | </ul> |
114 | </dd> | 123 | </dd> |
115 | </dl> | 124 | </dl> |