From 5a5e7c0a687becdceac59682e9c7f356ad94b46e Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Wed, 19 Feb 2014 09:54:47 +0000 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/templates/recipes.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/toaster/toastergui/templates/recipes.html') 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 @@ {% if recipe.r_dependencies_recipe.all.count %} {{recipe.name}} depends on" + title="{{recipe.name}} dependencies" data-content="
    {% for i in recipe.r_dependencies_recipe.all|dictsort:"depends_on.name"%}
  • {{i.depends_on.name}}
  • @@ -44,7 +44,7 @@ {% if recipe.r_dependencies_depends.all.count %} {{recipe.name}} is brought in by" + title="{{recipe.name}} reverse dependencies" data-content="
      {% for i in recipe.r_dependencies_depends.all|dictsort:"recipe.name"%}
    • {{i.recipe.name}}
    • -- cgit v1.2.3-54-g00ecf