From: Ed Bartosh Date: Fri, 8 Jan 2016 11:17:21 +0000 (+0000) Subject: toaster: show 'satisfied via' text for build deps X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de77e338fe70341fe98561e2e40b534f5c88db10;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toaster: show 'satisfied via' text for build deps Showed ' satisfied via ' text and help tooltip for the build dependencies provided through 'PROVIDES' in the '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 bbe747517df..d6b464b9a8e 100644 --- a/lib/toaster/toastergui/templates/recipe.html +++ b/lib/toaster/toastergui/templates/recipe.html @@ -172,7 +172,14 @@ {% for rr in object.r_dependencies_recipe.all|dictsort:"depends_on.name" %} - {{rr.depends_on.name}} + {{rr.depends_on.name}} + {% if rr.via %} + satisfied via {{rr.via.name}} + + {% endif %} + {{rr.depends_on.version}} {% endfor %}