summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/package_built_detail.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_built_detail.html14
1 files changed, 4 insertions, 10 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_built_detail.html b/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
index 3aa1b2a8a7..0fe01165da 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
@@ -23,18 +23,12 @@
23 <div class="alert alert-info"> 23 <div class="alert alert-info">
24 <strong>{{package.fullpackagespec}}</strong> is <strong>not included</strong> in any image. This page shows you the files added to an image root file system if you include <strong>{{package.fullpackagespec}}</strong> in future builds. 24 <strong>{{package.fullpackagespec}}</strong> is <strong>not included</strong> in any image. This page shows you the files added to an image root file system if you include <strong>{{package.fullpackagespec}}</strong> in future builds.
25 </div> 25 </div>
26 <table class="table table-bordered table-hover"> 26 {% include "tablesort.html" %}
27 <thead>
28 <tr>
29 <th>File</th>
30 <th>Size</th>
31 </tr>
32 </thead>
33 <tbody> 27 <tbody>
34 {% for file in package.buildfilelist_package.all|dictsort:"path" %} 28 {% for file in objects %}
35 <tr> 29 <tr>
36 <td>{{file.path}}</td> 30 <td class="path">{{file.path}}</td>
37 <td>{{file.size|filtered_filesizeformat}}</td> 31 <td class="filesize sizecol">{{file.size|filtered_filesizeformat}}</td>
38 </tr> 32 </tr>
39 {% endfor %} 33 {% endfor %}
40 </tbody> 34 </tbody>