summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports/templates/config_items/listing.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Reports/reports/templates/config_items/listing.html')
-rw-r--r--src/lib/Bcfg2/Server/Reports/reports/templates/config_items/listing.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/Bcfg2/Server/Reports/reports/templates/config_items/listing.html b/src/lib/Bcfg2/Server/Reports/reports/templates/config_items/listing.html
deleted file mode 100644
index 0a92e7fc0..000000000
--- a/src/lib/Bcfg2/Server/Reports/reports/templates/config_items/listing.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{% extends "base-timeview.html" %}
-{% load bcfg2_tags %}
-
-{% block title %}Bcfg2 - Element Listing{% endblock %}
-
-{% block extra_header_info %}
-{% endblock%}
-
-{% block pagebanner %}{{mod_or_bad|capfirst}} Element Listing{% endblock %}
-
-{% block content %}
-{% filter_navigator %}
-{% if item_list %}
- {% for type_name, type_data in item_list %}
- <div class='entry_list'>
- <div class='entry_list_head element_list_head' onclick='javascript:toggleMe("table_{{ type_name }}");'>
- <h3>{{ type_name }} &#8212; {{ type_data|length }}</h3>
- <div class='entry_expand_tab' id='plusminus_table_{{ type_name }}'>[&ndash;]</div>
- </div>
- <table id='table_{{ type_name }}' class='entry_list'>
- <tr style='text-align: left' ><th>Name</th><th>Count</th><th>Reason</th></tr>
- {% for entry, reason, eis in type_data %}
- <tr class='{% cycle listview,listview_alt %}'>
- <td><a href="{% url reports_entry eid=entry.pk %}">{{entry.name}}</a></td>
- <td>{{ eis|length }}</td>
- <td><a href="{% url reports_item type=mod_or_bad,pk=eis.0 %}">{{ reason.short_list|join:"," }}</a></td>
- </tr>
- {% endfor %}
- </table>
- </div>
- {% endfor %}
-{% else %}
- <p>There are currently no inconsistent configuration entries.</p>
-{% endif %}
-{% endblock %}