diff options
author | Belen Barros Pena <belen.barros.pena@linux.intel.com> | 2016-06-02 14:26:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:05 +0100 |
commit | a7d498dfd3929eafb87274f27b487ef2fe1e7e68 (patch) | |
tree | 4a98b533e0269349ce534a93ef85c214510fff26 /bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html | |
parent | 46271833bed74559ad006024c94036170cfc5b7d (diff) | |
download | poky-a7d498dfd3929eafb87274f27b487ef2fe1e7e68.tar.gz |
bitbake: toaster: port all build analysis pages to bootstrap 3
Port all the pages in the build analysis area to bootstrap version 3.
(Bitbake rev: f963b73f0bf32db2df39dd79d8d85184c280cda0)
Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.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/basebuilddetailpage.html')
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html b/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html index 3a4c38347d..4d50667322 100644 --- a/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html +++ b/bitbake/lib/toaster/toastergui/templates/basebuilddetailpage.html | |||
@@ -5,21 +5,23 @@ | |||
5 | 5 | ||
6 | <div class="row"> | 6 | <div class="row"> |
7 | <!-- Breadcrumbs --> | 7 | <!-- Breadcrumbs --> |
8 | <ul class="breadcrumb" id="breadcrumb"> | 8 | <div class="col-md-12"> |
9 | <li><a href="{% project_url build.project %}">{{build.project.name}}</a></li> | 9 | <ul class="breadcrumb" id="breadcrumb"> |
10 | {% if not build.project.is_default %} | 10 | <li><a href="{% project_url build.project %}">{{build.project.name}}</a></li> |
11 | <li><a href="{% url 'projectbuilds' build.project.id %}">Builds</a></li> | 11 | {% if not build.project.is_default %} |
12 | {% endif %} | 12 | <li><a href="{% url 'projectbuilds' build.project.id %}">Builds</a></li> |
13 | <li><a href="{%url 'builddashboard' build.pk%}">{{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"}})</a></li> | 13 | {% endif %} |
14 | {% block localbreadcrumb %}{% endblock %} | 14 | <li><a href="{%url 'builddashboard' build.pk%}">{{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"}})</a></li> |
15 | </ul> | 15 | {% block localbreadcrumb %}{% endblock %} |
16 | <script> | 16 | </ul> |
17 | <script> | ||
17 | $( function () { | 18 | $( function () { |
18 | $('#breadcrumb > li').append('<span class="divider">→</span>'); | 19 | $('#breadcrumb > li').append('<span class="divider">→</span>'); |
19 | $('#breadcrumb > li:last').addClass("active"); | 20 | $('#breadcrumb > li:last').addClass("active"); |
20 | $('#breadcrumb > li:last > span').remove(); | 21 | $('#breadcrumb > li:last > span').remove(); |
21 | }); | 22 | }); |
22 | </script> | 23 | </script> |
24 | </div> | ||
23 | </div> | 25 | </div> |
24 | 26 | ||
25 | <!-- Begin container --> | 27 | <!-- Begin container --> |