summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/configuration.html
blob: 052c37c4e8fad63fd1d5643a1f6d6dda41d1b9b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "basebuildpage.html" %}

{% block pagetitle %}Configuration{% endblock %}
{% block pagetable %}

            <tr>
            <th>Name</th>
            <th>Value</th>
            <th>Description</th>
            </tr>

            {% for variable in configuration %}

            <tr class="data">
                <td>{{variable.variable_name}}</td>
                <td>{{variable.variable_value}}</td>
                <td>{% if variable.description %}{{variable.description}}{% endif %}</td>
            {% endfor %}

{% endblock %}