aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/configuration.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/configuration.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/configuration.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/configuration.html b/bitbake/lib/toaster/bldviewer/templates/configuration.html
index 052c37c4e8..8db35e0d98 100644
--- a/bitbake/lib/toaster/bldviewer/templates/configuration.html
+++ b/bitbake/lib/toaster/bldviewer/templates/configuration.html
@@ -5,16 +5,18 @@
<tr>
<th>Name</th>
- <th>Value</th>
<th>Description</th>
+ <th>Definition history</th>
+ <th>Value</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>
+ <td>{% for vh in variable.variablehistory_set.all %}{{vh.operation}} in {{vh.file_name}}:{{vh.line_number}}<br/>{%endfor%}</td>
+ <td>{{variable.variable_value}}</td>
{% endfor %}
{% endblock %}