summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/builds.html
diff options
context:
space:
mode:
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