mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 18:49:33 +02:00
bitbake: toaster: Display task description
Display task description as content of help bubble for a task. [YOCTO #5748] (Bitbake rev: 4ffc380d11cff4e1d32d2bf5fb6c7cda6f7e22e6) Signed-off-by: Ravi Chintakunta <ravi.chintakunta@timesys.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
8f791ce59d
commit
85eb8dbd6d
@@ -112,7 +112,7 @@
|
||||
<td><a {{ task|task_color }} href="{% url "task" build.pk task.pk %}">{{task.order}}</a></td>
|
||||
<td>
|
||||
<a {{ task|task_color }} href="{% url "task" build.pk task.pk %}">{{task.task_name}}</a>
|
||||
<i class="icon-question-sign get-help hover-help" title="This task fetches the source code"></i>
|
||||
{% if task.get_description %}<i class="icon-question-sign get-help hover-help" title="" data-original-title="{{task.get_description}}"></i> {% endif %}
|
||||
</td>
|
||||
|
||||
<td><a {{ task|task_color }} href="{% url "task" build.pk task.pk %}">{{task.get_executed_display}}</a></td>
|
||||
|
||||
@@ -86,7 +86,7 @@
|
||||
<a href="{% url "recipe" build.pk task.recipe.pk %}">{{task.recipe.version}}</a>
|
||||
</td>
|
||||
<td class="task_name">
|
||||
<a href="{%url "task" build.pk task.pk%} ">{{task.task_name}}</a>
|
||||
<a href="{%url "task" build.pk task.pk%} ">{{task.task_name}}</a> {% if task.get_description %}<i class="icon-question-sign get-help hover-help" title="" data-original-title="{{task.get_description}}"></i> {% endif %}
|
||||
</td>
|
||||
<td class="executed">
|
||||
<a href="{%url "task" build.pk task.pk%} ">{{task.get_executed_display}}</a>
|
||||
|
||||
Reference in New Issue
Block a user