summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/simple_configuration.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/simple_configuration.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/simple_configuration.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/simple_configuration.html b/bitbake/lib/toaster/bldviewer/templates/simple_configuration.html
new file mode 100644
index 0000000000..c5fe20d82e
--- /dev/null
+++ b/bitbake/lib/toaster/bldviewer/templates/simple_configuration.html
@@ -0,0 +1,22 @@
1{% extends "simple_basebuildpage.html" %}
2
3{% block pagetitle %}Configuration{% endblock %}
4{% block pagetable %}
5
6 <tr>
7 <th>Name</th>
8 <th>Description</th>
9 <th>Definition history</th>
10 <th>Value</th>
11 </tr>
12
13 {% for variable in objects %}
14
15 <tr class="data">
16 <td>{{variable.variable_name}}</td>
17 <td>{% if variable.description %}{{variable.description}}{% endif %}</td>
18 <td>{% for vh in variable.variablehistory_set.all %}{{vh.operation}} in {{vh.file_name}}:{{vh.line_number}}<br/>{%endfor%}</td>
19 <td>{{variable.variable_value}}</td>
20 {% endfor %}
21
22{% endblock %}