diff options
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/recipe.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html index d6b464b9a8..1d6d64e3c7 100644 --- a/bitbake/lib/toaster/toastergui/templates/recipe.html +++ b/bitbake/lib/toaster/toastergui/templates/recipe.html | |||
@@ -211,7 +211,14 @@ | |||
211 | 211 | ||
212 | {% for rr in object.r_dependencies_depends.all|dictsort:"recipe.name" %} | 212 | {% for rr in object.r_dependencies_depends.all|dictsort:"recipe.name" %} |
213 | <tr> | 213 | <tr> |
214 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.name}}</a></td> | 214 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.name}}</a> |
215 | {% if rr.via %} | ||
216 | <span class="muted"> satisfied via {{rr.via.name}}</span> | ||
217 | <i class="icon-question-sign get-help hover-help" | ||
218 | title="This dependency is satisfied by the PROVIDES value | ||
219 | {{rr.via.name}} in the {{rr.depends_on.name}} recipe"></i> | ||
220 | {% endif %} | ||
221 | </td> | ||
215 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.version}}</a></td> | 222 | <td><a href="{% url "recipe" build.pk rr.recipe.pk %}">{{rr.recipe.version}}</a></td> |
216 | </tr> | 223 | </tr> |
217 | {% endfor %} | 224 | {% endfor %} |