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.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_built_detail.html b/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
index fe856a3cb6..b50ef53ded 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
@@ -29,15 +29,15 @@
29 <th>File</th> 29 <th>File</th>
30 <th>Size</th> 30 <th>Size</th>
31 </tr> 31 </tr>
32 </thead> 32 </thead>
33 {% for file in package.buildfilelist_package.all|dictsort:"path" %} 33 <tbody>
34 <tbody> 34 {% for file in package.buildfilelist_package.all|dictsort:"path" %}
35 <tr> 35 <tr>
36 <td>{{file.path}}</td> 36 <td>{{file.path}}</td>
37 <td>{{file.size|filtered_filesizeformat}}</td> 37 <td>{{file.size|filtered_filesizeformat}}</td>
38 </tr> 38 </tr>
39 </tbody> 39 {% endfor %}
40 {% endfor %} 40 </tbody>
41 </table> 41 </table>
42 42
43 {% else %} 43 {% else %}