summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/recipes.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-19 09:54:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-09 12:24:00 -0700
commit5a5e7c0a687becdceac59682e9c7f356ad94b46e (patch)
tree311fd207507ceb7543fa437dd2ac936161047b8f /bitbake/lib/toaster/toastergui/templates/recipes.html
parent5462bd0f741a52e5c501c6490837200b34e09083 (diff)
downloadpoky-5a5e7c0a687becdceac59682e9c7f356ad94b46e.tar.gz
bitbake: toaster: Change popover headings in recipes table
In the recipes table, dependencies and reverse dependencies are shown inside a popover. The popover headings did not match the table headings, so changed to "dependencies" and "reverse dependencies" as per the design spec. (Bitbake rev: 05f19e5cd8cca48e6e52f4b3ea1cd25d2ba4ac1c) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/recipes.html')
-rwxr-xr-xbitbake/lib/toaster/toastergui/templates/recipes.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipes.html b/bitbake/lib/toaster/toastergui/templates/recipes.html
index 37d9dcee0e..724bcf5879 100755
--- a/bitbake/lib/toaster/toastergui/templates/recipes.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipes.html
@@ -30,7 +30,7 @@
30 <td class="depends_on"> 30 <td class="depends_on">
31 {% if recipe.r_dependencies_recipe.all.count %} 31 {% if recipe.r_dependencies_recipe.all.count %}
32 <a class="btn" 32 <a class="btn"
33 title="<a href='{% url "recipe" build.pk recipe.pk %}#dependencies'>{{recipe.name}}</a> depends on" 33 title="<a href='{% url "recipe" build.pk recipe.pk %}#dependencies'>{{recipe.name}}</a> dependencies"
34 data-content="<ul class='unstyled'> 34 data-content="<ul class='unstyled'>
35 {% for i in recipe.r_dependencies_recipe.all|dictsort:"depends_on.name"%} 35 {% for i in recipe.r_dependencies_recipe.all|dictsort:"depends_on.name"%}
36 <li><a href='{% url "recipe" build.pk i.depends_on.pk %}'>{{i.depends_on.name}}</a></li> 36 <li><a href='{% url "recipe" build.pk i.depends_on.pk %}'>{{i.depends_on.name}}</a></li>
@@ -44,7 +44,7 @@
44 <td class="depends_by"> 44 <td class="depends_by">
45 {% if recipe.r_dependencies_depends.all.count %} 45 {% if recipe.r_dependencies_depends.all.count %}
46 <a class="btn" 46 <a class="btn"
47 title="<a href='{% url "recipe" build.pk recipe.pk %}#brought-in-by'>{{recipe.name}}</a> is brought in by" 47 title="<a href='{% url "recipe" build.pk recipe.pk %}#brought-in-by'>{{recipe.name}}</a> reverse dependencies"
48 data-content="<ul class='unstyled'> 48 data-content="<ul class='unstyled'>
49 {% for i in recipe.r_dependencies_depends.all|dictsort:"recipe.name"%} 49 {% for i in recipe.r_dependencies_depends.all|dictsort:"recipe.name"%}
50 <li><a href='{% url "recipe" build.pk i.recipe.pk %}'>{{i.recipe.name}}</a></li> 50 <li><a href='{% url "recipe" build.pk i.recipe.pk %}'>{{i.recipe.name}}</a></li>