From: Ed Bartosh Date: Fri, 8 Jan 2016 11:17:20 +0000 (+0000) Subject: toaster: show list of provides for the recipe X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60318c9a049292bd33322d8446a629d778337e8a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toaster: show list of provides for the recipe Showed list of names that recipe provides. 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 c6ae2f38024..bbe747517df 100644 --- a/lib/toaster/toastergui/templates/recipe.html +++ b/lib/toaster/toastergui/templates/recipe.html @@ -71,6 +71,16 @@ Layer commit
{{layer_version.commit}}
+ {% if object.provides_set.all %} +
+ + PROVIDES +
+
{% for provider in object.provides_set.all %}{{ provider.name }} {% endfor %}
+ {% endif %}

Tasks