summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html b/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html
index 4932f74c88..a2011d6fb6 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_built_dependencies.html
@@ -2,7 +2,6 @@
2{% load projecttags %} 2{% load projecttags %}
3 3
4{% block tabcontent %} 4{% block tabcontent %}
5 {% with fullPackageSpec=package.name|add:"-"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}
6 <ul class="nav nav-pills"> 5 <ul class="nav nav-pills">
7 <li class=""> 6 <li class="">
8 <a href="{% url 'package_built_detail' build.id package.id %}"> 7 <a href="{% url 'package_built_detail' build.id package.id %}">
@@ -21,11 +20,11 @@
21 <div class="tab-pane active" id="dependencies"> 20 <div class="tab-pane active" id="dependencies">
22 {% ifequal runtime_deps|length 0 %} 21 {% ifequal runtime_deps|length 0 %}
23 <div class="alert alert-info"> 22 <div class="alert alert-info">
24 <strong>{{fullPackageSpec}}</strong> has no runtime dependencies. 23 <strong>{{package.fullpackagespec}}</strong> has no runtime dependencies.
25 </div> 24 </div>
26 {% else %} 25 {% else %}
27 <div class="alert alert-info"> 26 <div class="alert alert-info">
28 <strong>{{fullPackageSpec}}</strong> is <strong>not included</strong> in any image. These are its projected runtime dependencies if you were to include it in future builds. 27 <strong>{{package.fullpackagespec}}</strong> is <strong>not included</strong> in any image. These are its projected runtime dependencies if you were to include it in future builds.
29 </div> 28 </div>
30 <table class="table table-bordered table-hover"> 29 <table class="table table-bordered table-hover">
31 <thead> 30 <thead>
@@ -56,7 +55,7 @@
56 </tr> 55 </tr>
57 {% endifequal %} 56 {% endifequal %}
58 {% endfor %} 57 {% endfor %}
59 </tbody> 58 </tbody>
60 </table> 59 </table>
61 {% endifequal %} 60 {% endifequal %}
62 {% ifnotequal other_deps|length 0 %} 61 {% ifnotequal other_deps|length 0 %}
@@ -72,7 +71,7 @@
72 Relationship type 71 Relationship type
73 </th> 72 </th>
74 </tr> 73 </tr>
75 </thead> 74 </thead>
76 <tbody> 75 <tbody>
77 {% for other_dep in other_deps %} 76 {% for other_dep in other_deps %}
78 {% ifequal other_dep.version '' %} 77 {% ifequal other_dep.version '' %}
@@ -106,5 +105,4 @@
106 {% endifnotequal %} 105 {% endifnotequal %}
107 </div> <!-- tab-pane --> 106 </div> <!-- tab-pane -->
108 </div> <!-- tab-content --> 107 </div> <!-- tab-content -->
109 {% endwith %}
110{% endblock tabcontent %} 108{% endblock tabcontent %}