From de77e338fe70341fe98561e2e40b534f5c88db10 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Fri, 8 Jan 2016 11:17:21 +0000 Subject: [PATCH] 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 --- lib/toaster/toastergui/templates/recipe.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 %} -- 2.47.3