summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/mrb_section.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/mrb_section.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/mrb_section.html28
1 files changed, 24 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/mrb_section.html b/bitbake/lib/toaster/toastergui/templates/mrb_section.html
index 880485d45f..b74f723932 100644
--- a/bitbake/lib/toaster/toastergui/templates/mrb_section.html
+++ b/bitbake/lib/toaster/toastergui/templates/mrb_section.html
@@ -71,6 +71,8 @@
71 <%include tmpl='#succeeded-or-failed-build-template'/%> 71 <%include tmpl='#succeeded-or-failed-build-template'/%>
72 <%else state == 'Cancelling'%> 72 <%else state == 'Cancelling'%>
73 <%include tmpl='#cancelling-build-template'/%> 73 <%include tmpl='#cancelling-build-template'/%>
74 <%else state == 'Starting'%>
75 <%include tmpl='#starting-template'/%>
74 <%else state == 'In Progress'%> 76 <%else state == 'In Progress'%>
75 <%include tmpl='#in-progress-build-template'/%> 77 <%include tmpl='#in-progress-build-template'/%>
76 <%else state == 'Cancelled'%> 78 <%else state == 'Cancelled'%>
@@ -81,8 +83,9 @@
81<!-- queued build --> 83<!-- queued build -->
82<script id="queued-build-template" type="text/x-jsrender"> 84<script id="queued-build-template" type="text/x-jsrender">
83 <div class="col-md-5"> 85 <div class="col-md-5">
84 <span class="glyphicon glyphicon-question-sign get-help get-help-blue" title="This build is waiting for 86 <span class="glyphicon glyphicon-question-sign get-help get-help-blue"
85the build directory to become available"></span> 87 title="This build is waiting for the build directory to become available">
88 </span>
86 89
87 Build queued 90 Build queued
88 </div> 91 </div>
@@ -108,7 +111,8 @@ the build directory to become available"></span>
108 111
109 <div class="col-md-4 progress-info"> 112 <div class="col-md-4 progress-info">
110 <!-- parse completion percentage --> 113 <!-- parse completion percentage -->
111 <span class="glyphicon glyphicon-question-sign get-help get-help-blue" title="BitBake is parsing the layers required for your build"></span> 114 <span class="glyphicon glyphicon-question-sign get-help get-help-blue" title="BitBake is parsing the layers required for your build">
115 </span>
112 116
113 Parsing <span id="recipes-parsed-percentage-<%:id%>"><%:recipes_parsed_percentage%></span>% complete 117 Parsing <span id="recipes-parsed-percentage-<%:id%>"><%:recipes_parsed_percentage%></span>% complete
114 118
@@ -116,7 +120,23 @@ the build directory to become available"></span>
116 </div> 120 </div>
117</script> 121</script>
118 122
119<!-- in progress build --> 123<!-- in progress build; tasks still starting -->
124<script id="starting-template" type="text/x-jsrender">
125 <div class="col-md-5">
126 <span class="glyphicon glyphicon-question-sign get-help get-help-blue"
127 title="This build is waiting for tasks to start">
128 </span>
129
130 Tasks starting...
131 </div>
132
133 <div class="col-md-4">
134 <!-- cancel button -->
135 <%include tmpl='#cancel-template'/%>
136 </div>
137</script>
138
139<!-- in progress build; at least one task finished -->
120<script id="in-progress-build-template" type="text/x-jsrender"> 140<script id="in-progress-build-template" type="text/x-jsrender">
121 <!-- progress bar and task completion percentage --> 141 <!-- progress bar and task completion percentage -->
122 <div data-role="build-status" class="col-md-4 col-md-offset-1 progress-info"> 142 <div data-role="build-status" class="col-md-4 col-md-offset-1 progress-info">