summaryrefslogtreecommitdiffstats
path: root/lib/toaster/bldviewer/templates/simple_configuration.html
diff options
context:
space:
mode:
Diffstat (limited to 'lib/toaster/bldviewer/templates/simple_configuration.html')
-rw-r--r--lib/toaster/bldviewer/templates/simple_configuration.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/toaster/bldviewer/templates/simple_configuration.html b/lib/toaster/bldviewer/templates/simple_configuration.html
new file mode 100644
index 000000000..c5fe20d82
--- /dev/null
+++ b/lib/toaster/bldviewer/templates/simple_configuration.html
@@ -0,0 +1,22 @@
+{% extends "simple_basebuildpage.html" %}
+
+{% block pagetitle %}Configuration{% endblock %}
+{% block pagetable %}
+
+ <tr>
+ <th>Name</th>
+ <th>Description</th>
+ <th>Definition history</th>
+ <th>Value</th>
+ </tr>
+
+ {% for variable in objects %}
+
+ <tr class="data">
+ <td>{{variable.variable_name}}</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 %}