summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/simple_configuration.html
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
commitc527fd1f14c27855a37f2e8ac5346ce8d940ced2 (patch)
treebb002c1fdf011c41dbd2f0927bed23ecb5f83c97 /bitbake/lib/toaster/bldviewer/templates/simple_configuration.html
downloadpoky-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
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 %}