summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/templates/builddashboard.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/builddashboard.html b/bitbake/lib/toaster/toastergui/templates/builddashboard.html
index 75ca8bc2c0..c39fe3457a 100644
--- a/bitbake/lib/toaster/toastergui/templates/builddashboard.html
+++ b/bitbake/lib/toaster/toastergui/templates/builddashboard.html
@@ -3,7 +3,12 @@
3{% load projecttags %} 3{% load projecttags %}
4 4
5{% block parentbreadcrumb %} 5{% block parentbreadcrumb %}
6{{build.get_sorted_target_list.0.target}} {%if build.target_set.all.count > 1%}(+ {{build.target_set.all.count|add:"-1"}}){%endif%} {{build.machine}} ({{build.completed_on|date:"d/m/y H:i"}}) 6{% if build.get_sorted_target_list.count > 0 %}
7 {{build.get_sorted_target_list.0.target}}
8  
9{% endif %}
10
11{%if build.target_set.all.count > 1%}(+ {{build.target_set.all.count|add:"-1"}}){%endif%} {{build.machine}} ({{build.completed_on|date:"d/m/y H:i"}})
7{% endblock %} 12{% endblock %}
8 13
9{% block buildinfomain %} 14{% block buildinfomain %}
@@ -62,7 +67,7 @@
62 <div class="accordion-inner"> 67 <div class="accordion-inner">
63 <div class="span10"> 68 <div class="span10">
64 {% for error in build.errors %} 69 {% for error in build.errors %}
65 <div class="alert alert-error"> 70 <div class="alert alert-error" data-error="{{ error.id }}">
66 <pre>{{error.message}}</pre> 71 <pre>{{error.message}}</pre>
67 </div> 72 </div>
68 {% endfor %} 73 {% endfor %}