summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/config_items/item.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Reporting/templates/config_items/item.html')
-rw-r--r--src/lib/Bcfg2/Reporting/templates/config_items/item.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Reporting/templates/config_items/item.html b/src/lib/Bcfg2/Reporting/templates/config_items/item.html
index 91c368bd7..9a103bc72 100644
--- a/src/lib/Bcfg2/Reporting/templates/config_items/item.html
+++ b/src/lib/Bcfg2/Reporting/templates/config_items/item.html
@@ -45,7 +45,7 @@ div.entry_list h3 {
{% endif %}
{# Really need a better test here #}
-{% if item.mode_problem or item.status_problem or item.linkentry.link_problem or item.version_problem %}
+{% if item.mode_problem or item.status_problem or item.linkentry.link_problem or item.version_problem or item.conf_problem %}
<table class='entry_list'>
<tr id='table_list_header'>
<td style='text-align: right;'>Problem Type</td><td>Expected</td><td style='border-bottom: 1px solid #98DBCC;'>Found</td></tr>
@@ -86,6 +86,11 @@ div.entry_list h3 {
<td>{{item.selinuxtype}}</td>
<td>{{item.current_selinuxtype}}</td></tr>
{% endif %}
+ {% if item.conf_problem %}
+ <tr><td style='text-align: right'><b>Conf Value</b></td>
+ <td>{{item.value|default:""}}</td>
+ <td>{{item.current_value|default:""}}</td></tr>
+ {% endif %}
</table>
{% endif %}