summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html19
1 files changed, 9 insertions, 10 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html b/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html
index c8c2dddf29..00d42e76d1 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_included_dependencies.html
@@ -21,8 +21,8 @@
21 <th>Size</th> 21 <th>Size</th>
22 </tr> 22 </tr>
23 </thead> 23 </thead>
24 {% for runtime_dep in runtime_deps %} 24 <tbody>
25 <tbody> 25 {% for runtime_dep in runtime_deps %}
26 <tr> 26 <tr>
27 <td> 27 <td>
28 <a href="{% url 'package_included_detail' build.id target.id runtime_dep.depends_on_id %}"> 28 <a href="{% url 'package_included_detail' build.id target.id runtime_dep.depends_on_id %}">
@@ -32,8 +32,8 @@
32 <td>{{runtime_dep.version}}</td> 32 <td>{{runtime_dep.version}}</td>
33 <td>{{runtime_dep.size|filtered_filesizeformat}}</td> 33 <td>{{runtime_dep.size|filtered_filesizeformat}}</td>
34 </tr> 34 </tr>
35 </tbody> 35 {% endfor %}
36 {% endfor %} 36 </tbody>
37 </table> 37 </table>
38 {% else %} 38 {% else %}
39 <div class="alert alert-info"> 39 <div class="alert alert-info">
@@ -54,10 +54,9 @@
54 Relationship type 54 Relationship type
55 </th> 55 </th>
56 </tr> 56 </tr>
57 </thead> 57 </thead>
58 58 <tbody>
59 {% for other_dep in other_deps %} 59 {% for other_dep in other_deps %}
60 <tbody>
61 {% if other_dep.installed %} 60 {% if other_dep.installed %}
62 <tr> 61 <tr>
63 <td> 62 <td>
@@ -83,8 +82,8 @@
83 </td> 82 </td>
84 </tr> 83 </tr>
85 {% endif %} 84 {% endif %}
86 </tbody> 85 {% endfor %}
87 {% endfor %} 86 </tbody>
88 </table> 87 </table>
89 {% endifnotequal %} 88 {% endifnotequal %}
90 </div> <!-- end tab-pane --> 89 </div> <!-- end tab-pane -->