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.html29
1 files changed, 28 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/mrb_section.html b/bitbake/lib/toaster/toastergui/templates/mrb_section.html
index b761ffe1df..c5b9fe90d3 100644
--- a/bitbake/lib/toaster/toastergui/templates/mrb_section.html
+++ b/bitbake/lib/toaster/toastergui/templates/mrb_section.html
@@ -64,7 +64,9 @@
64 </div> 64 </div>
65 65
66 <div data-build-state="<%:state%>"> 66 <div data-build-state="<%:state%>">
67 <%if state == 'Parsing'%> 67 <%if state == 'Cloning'%>
68 <%include tmpl='#cloning-repos-build-template'/%>
69 <%else state == 'Parsing'%>
68 <%include tmpl='#parsing-recipes-build-template'/%> 70 <%include tmpl='#parsing-recipes-build-template'/%>
69 <%else state == 'Queued'%> 71 <%else state == 'Queued'%>
70 <%include tmpl='#queued-build-template'/%> 72 <%include tmpl='#queued-build-template'/%>
@@ -98,6 +100,31 @@
98 </div> 100 </div>
99</script> 101</script>
100 102
103<!-- cloning repos build -->
104<script id="cloning-repos-build-template" type="text/x-jsrender">
105 <!-- progress bar and parse completion percentage -->
106 <div data-role="build-status" class="col-md-4 col-md-offset-1 progress-info">
107 <!-- progress bar -->
108 <div class="progress">
109 <div id="repos-cloned-percentage-bar-<%:id%>"
110 style="width: <%:repos_cloned_percentage%>%;"
111 class="progress-bar">
112 </div>
113 </div>
114 </div>
115
116 <div class="col-md-4 progress-info">
117 <!-- parse completion percentage -->
118 <span class="glyphicon glyphicon-question-sign get-help get-help-blue"
119 title="Toaster is cloning the repos required for your build">
120 </span>
121
122 Cloning <span id="repos-cloned-percentage-<%:id%>"><%:repos_cloned_percentage%></span>% complete
123
124 <%include tmpl='#cancel-template'/%>
125 </div>
126</script>
127
101<!-- parsing recipes build --> 128<!-- parsing recipes build -->
102<script id="parsing-recipes-build-template" type="text/x-jsrender"> 129<script id="parsing-recipes-build-template" type="text/x-jsrender">
103 <!-- progress bar and parse completion percentage --> 130 <!-- progress bar and parse completion percentage -->