summaryrefslogtreecommitdiffstats
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 @@
5 5
6 <tr> 6 <tr>
7 <th>Name</th> 7 <th>Name</th>
8 <th>Value</th>
9 <th>Description</th> 8 <th>Description</th>
9 <th>Definition history</th>
10 <th>Value</th>
10 </tr> 11 </tr>
11 12
12 {% for variable in configuration %} 13 {% for variable in configuration %}
13 14
14 <tr class="data"> 15 <tr class="data">
15 <td>{{variable.variable_name}}</td> 16 <td>{{variable.variable_name}}</td>
16 <td>{{variable.variable_value}}</td>
17 <td>{% if variable.description %}{{variable.description}}{% endif %}</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>
18 {% endfor %} 20 {% endfor %}
19 21
20{% endblock %} 22{% endblock %}