From: Belen Barros Pena Date: Wed, 19 Feb 2014 09:54:47 +0000 (+0000) Subject: bitbake: toaster: Change popover headings in recipes table X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5a5e7c0a687becdceac59682e9c7f356ad94b46e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/bitbake/lib/toaster/toastergui/templates/recipes.html b/bitbake/lib/toaster/toastergui/templates/recipes.html index 37d9dcee0e8..724bcf58790 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}}