summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/basebuildpage.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-08-04 16:07:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-06 16:04:41 -0500
commit569567d3b3811eb206a143479d624d82811b3a14 (patch)
tree22a873a33a3a106f099f60c2d5144db39c2a6bb5 /bitbake/lib/toaster/toastergui/templates/basebuildpage.html
parentd47358fc952800e0115cea25d7cb4c07c49eaaf9 (diff)
downloadpoky-569567d3b3811eb206a143479d624d82811b3a14.tar.gz
bitbake: toastergui: breadcrumb fixes
Make sure that we use the correct html entity for the breadcrumb dividers, and remove the 'all builds' item from the history pages: all breadcrumbs should now have the project name as their first element, since the 'all builds' page can be reached using the global naviation in the top bar. (Bitbake rev: c97f658f4b2131f280c364c2209efd28878570dc) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/basebuildpage.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/basebuildpage.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/basebuildpage.html b/bitbake/lib/toaster/toastergui/templates/basebuildpage.html
index 105ad85ed4..f399ba4625 100644
--- a/bitbake/lib/toaster/toastergui/templates/basebuildpage.html
+++ b/bitbake/lib/toaster/toastergui/templates/basebuildpage.html
@@ -8,7 +8,6 @@
8<!-- Breadcrumbs --> 8<!-- Breadcrumbs -->
9 <div class="section"> 9 <div class="section">
10 <ul class="breadcrumb" id="breadcrumb"> 10 <ul class="breadcrumb" id="breadcrumb">
11 <li><a href="{% url 'all-builds' %}">All builds</a></li>
12 <li><a href="{% url 'project' build.project.id %}">{{build.project.name}}</a></li> 11 <li><a href="{% url 'project' build.project.id %}">{{build.project.name}}</a></li>
13 <li> 12 <li>
14 {% block parentbreadcrumb %} 13 {% block parentbreadcrumb %}
@@ -21,7 +20,7 @@
21 </ul> 20 </ul>
22 <script> 21 <script>
23 $( function () { 22 $( function () {
24 $('#breadcrumb > li').append("<span class=\"divider\"></span>"); 23 $('#breadcrumb > li').append('<span class="divider">&rarr;</span>');
25 $('#breadcrumb > li:last').addClass("active"); 24 $('#breadcrumb > li:last').addClass("active");
26 $('#breadcrumb > li:last > span').remove(); 25 $('#breadcrumb > li:last > span').remove();
27 console.log("done"); 26 console.log("done");