summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/simple_bfile.html
blob: cd1e5535086ee0b9d877cff4c9f6b8ed9fea5dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "simple_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 %}