mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
46271833be
commit
a7d498dfd3
@@ -260,10 +260,10 @@ class BuiltRecipesTable(BuildTablesMixin):
|
||||
{% with deps=data.r_dependencies_recipe.all %}
|
||||
{% with count=deps|length %}
|
||||
{% if count %}
|
||||
<a class="btn" title="
|
||||
<a class="btn btn-default" title="
|
||||
<a href='{% url "recipe" extra.build.pk data.pk %}#dependencies'>
|
||||
{{data.name}}</a> dependencies"
|
||||
data-content="<ul class='unstyled'>
|
||||
data-content="<ul class='list-unstyled'>
|
||||
{% for dep in deps|dictsort:"depends_on.name"%}
|
||||
<li><a href='{% url "recipe" extra.build.pk dep.depends_on.pk %}'>
|
||||
{{dep.depends_on.name}}</a></li>
|
||||
@@ -278,11 +278,11 @@ class BuiltRecipesTable(BuildTablesMixin):
|
||||
{% with revs=data.r_dependencies_depends.all %}
|
||||
{% with count=revs|length %}
|
||||
{% if count %}
|
||||
<a class="btn"
|
||||
<a class="btn btn-default"
|
||||
title="
|
||||
<a href='{% url "recipe" extra.build.pk data.pk %}#brought-in-by'>
|
||||
{{data.name}}</a> reverse dependencies"
|
||||
data-content="<ul class='unstyled'>
|
||||
data-content="<ul class='list-unstyled'>
|
||||
{% for dep in revs|dictsort:"recipe.name" %}
|
||||
<li>
|
||||
<a href='{% url "recipe" extra.build.pk dep.recipe.pk %}'>
|
||||
|
||||
Reference in New Issue
Block a user