diff options
Diffstat (limited to 'yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html')
-rw-r--r-- | yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html b/yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html new file mode 100644 index 000000000..c7f59434a --- /dev/null +++ b/yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html @@ -0,0 +1,24 @@ +{% extends "basebuildpage.html" %} + +{% block pagetitle %}Files for package {{objects.0.bpackage.name}} {% endblock %} +{% block pagetable %} + {% if not objects %} + <p>No files were recorded for this package!</p> + {% else %} + + <tr> + <th>Name</th> + <th>Size (Bytes)</th> + </tr> + + {% for file in objects %} + + <tr class="data"> + <td>{{file.path}}</td> + <td>{{file.size}}</td> + + {% endfor %} + + {% endif %} + +{% endblock %} |