summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/project.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-02-24 17:20:55 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-24 23:35:44 +0000
commit03c1e479c987de6f53d0eb644892175b1de5a8e3 (patch)
tree0919a486f9cada69ece8097976ac36838c795620 /bitbake/lib/toaster/toastergui/templates/project.html
parent1ea940f920371939527353061664b927243a7233 (diff)
downloadpoky-03c1e479c987de6f53d0eb644892175b1de5a8e3.tar.gz
bitbake: toasterui: improving the latest builds consistency
We have 2 pages where we have a 'latest builds' section: the 'all builds / all projects' page and the 'project' page. Unfortunately, we are currently using different code base in both, which means that some inconsistencies between the two in behaviour and presentation have sneaked in. This patch addresses some of such inconsistencies. (Bitbake rev: 0825f1a74b3767aad67674ab5044075c90067377) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/project.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/project.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/project.html b/bitbake/lib/toaster/toastergui/templates/project.html
index a1cce33222..a8cb917c6d 100644
--- a/bitbake/lib/toaster/toastergui/templates/project.html
+++ b/bitbake/lib/toaster/toastergui/templates/project.html
@@ -165,17 +165,17 @@ vim: expandtab tabstop=2
165 </case> 165 </case>
166 166
167 <case ng-switch-when="created"> 167 <case ng-switch-when="created">
168 <div class="lead span3"> <span ng-repeat="t in b.targets" ng-include src="'target_display'"></span> </div> 168 <div class="lead span5"> <span ng-repeat="t in b.targets" ng-include src="'target_display'"></span> </div>
169 <div class="span6" > 169 <div class="span4">
170 <span class="lead">Creating build</span> 170 <span class="lead">Creating build</span>
171 </div> 171 </div>
172 <button class="btn pull-right btn-info" ng-click="buildCancel(b)">Cancel</button> 172 <button class="btn pull-right btn-info" ng-click="buildCancel(b)">Cancel</button>
173 </case> 173 </case>
174 174
175 <case ng-switch-when="deleted"> 175 <case ng-switch-when="deleted">
176 <div class="lead span3"> <span ng-repeat="t in b.targets" ng-include src="'target_display'"></span> </div> 176 <div class="lead span5"> <span ng-repeat="t in b.targets" ng-include src="'target_display'"></span> </div>
177 <div class="span6" id="{[b.id]}-deleted" > 177 <div class="span4" id="{[b.id]}-deleted" >
178 <span class="lead">Build deleted</span> 178 <span class="lead">Build cancelled</span>
179 </div> 179 </div>
180 <button class="btn pull-right btn-info" ng-click="buildDelete(b)">Close</button> 180 <button class="btn pull-right btn-info" ng-click="buildDelete(b)">Close</button>
181 </case> 181 </case>