summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/builds.html
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2015-10-02 15:49:17 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-16 14:59:59 +0100
commit7c8877efdea6f6a3b3bca2cce486d19102a9cdfa (patch)
treede3c5baaf9f77f1e8e03af1b3619045df1956249 /bitbake/lib/toaster/toastergui/templates/builds.html
parent76702347a8f51871106e32f81e459c5548482e3d (diff)
downloadpoky-7c8877efdea6f6a3b3bca2cce486d19102a9cdfa.tar.gz
bitbake: toaster: Show tooltip next to cli builds project name in all builds
In the all builds page, show an icon with tooltip next to the command line builds project name. [YOCTO #8231] (Bitbake rev: 0240d92c6a508e0b22f37b3ea804171dd3dea5a6) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/builds.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/builds.html11
1 files changed, 7 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/builds.html b/bitbake/lib/toaster/toastergui/templates/builds.html
index 6fbaf98ae0..566c279ddd 100644
--- a/bitbake/lib/toaster/toastergui/templates/builds.html
+++ b/bitbake/lib/toaster/toastergui/templates/builds.html
@@ -63,10 +63,10 @@
63 {% include "basetable_top.html" %} 63 {% include "basetable_top.html" %}
64 <!-- Table data rows; the order needs to match the order of "tablecols" definitions; and the <td class value needs to match the tablecols clclass value for show/hide buttons to work --> 64 <!-- Table data rows; the order needs to match the order of "tablecols" definitions; and the <td class value needs to match the tablecols clclass value for show/hide buttons to work -->
65 {% for build in objects %} 65 {% for build in objects %}
66 <tr class="data"> 66 <tr class="data" data-table-build-result="{{ build.id }}">
67 <td class="outcome"> 67 <td class="outcome">
68 <a href="{% url "builddashboard" build.id %}">{%if build.outcome == build.SUCCEEDED%}<i class="icon-ok-sign success"></i>{%elif build.outcome == build.FAILED%}<i class="icon-minus-sign error"></i>{%else%}{%endif%}</a> &nbsp; 68 <a href="{% url "builddashboard" build.id %}">{%if build.outcome == build.SUCCEEDED%}<i class="icon-ok-sign success"></i>{%elif build.outcome == build.FAILED%}<i class="icon-minus-sign error"></i>{%else%}{%endif%}</a> &nbsp;
69 </td> 69 </td>
70 <td class="target"> 70 <td class="target">
71 {% for t in build.target_set.all %} 71 {% for t in build.target_set.all %}
72 <a href="{% url "builddashboard" build.id %}"> 72 <a href="{% url "builddashboard" build.id %}">
@@ -104,8 +104,11 @@
104 <a href="{%url "builddashboard" build.id%}#images">{{fstypes|get_dict_value:build.id}}</a> 104 <a href="{%url "builddashboard" build.id%}#images">{{fstypes|get_dict_value:build.id}}</a>
105 {% endif %} 105 {% endif %}
106 </td> 106 </td>
107 <td> 107 <td class="project-name">
108 <a href="{% project_url build.project %}">{{build.project.name}}</a> 108 <a href="{% project_url build.project %}">{{build.project.name}}</a>
109 {% if build.project.is_default %}
110 <i class="icon-question-sign get-help hover-help" title="" data-original-title="This project shows information about the builds you start from the command line while Toaster is running" style="visibility: hidden;"></i>
111 {% endif %}
109 </td> 112 </td>
110 </tr> 113 </tr>
111 114