From: Ed Bartosh Date: Fri, 8 Jan 2016 11:17:22 +0000 (+0000) Subject: toaster: show 'satisfied via' text for reverse deps X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7bb98e2e2111790ded86087b13c8b49462d6b75;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toaster: show 'satisfied via' text for reverse deps Showed ' satisfied via ' text and help tooltip for the reverse build dependencies provided through 'PROVIDES' in the 'Reverse build dependencies' tab. [YOCTO #6169] Signed-off-by: Ed Bartosh Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- diff --git a/lib/toaster/toastergui/templates/recipe.html b/lib/toaster/toastergui/templates/recipe.html index d6b464b9a8e..1d6d64e3c7b 100644 --- a/lib/toaster/toastergui/templates/recipe.html +++ b/lib/toaster/toastergui/templates/recipe.html @@ -211,7 +211,14 @@ {% for rr in object.r_dependencies_depends.all|dictsort:"recipe.name" %} - {{rr.recipe.name}} + {{rr.recipe.name}} + {% if rr.via %} + satisfied via {{rr.via.name}} + + {% endif %} + {{rr.recipe.version}} {% endfor %}