summaryrefslogtreecommitdiff
path: root/yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html')
-rw-r--r--yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html b/yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html
deleted file mode 100644
index c7f59434a..000000000
--- a/yocto-poky/bitbake/lib/toaster/toastergui/templates/bfile.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{% 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 %}