summaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/configuration.html
blob: e390a95ff5ddf876eb01c37d1422cd2f5eecf50d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends "basebuildpage.html" %}
{% block localbreadcrumb %}
<li>Configuration</li>
{% endblock %}

{% block buildinfomain %}

{% include "basetable_top.html" %}

            <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 %}

{% include "basetable_bottom.html" %}

{% endblock %}