summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
blob: 1ae82dab5f5bfa64419e89efe77c29813897e4b2 (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
29
30
31
32
33
34
35
36
{% extends "base-timeview.html" %}
{% load bcfg2_tags %}
{% load url from bcfg2_compat %}

{% block title %}Bcfg2 - Element Listing{% endblock %}

{% block extra_header_info %}
{% endblock%}

{% block pagebanner %}{{item_state|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 in type_data %}
          <tr class='{% cycle listview,listview_alt %}'>
            <td><a href='{% url "reports_entry" entry.class_name entry.pk %}'>{{entry.name}}</a></td>
            <td>{{entry.num_entries}}</td>
            <td><a href='{% url "reports_item" entry.class_name entry.pk %}'>{{entry.short_list|join:","}}</a></td>
          </tr>
        {% endfor %}
      </table>
    </div>
  {% endfor %}
{% else %}
    <p>There are currently no inconsistent configuration entries.</p>
{% endif %}
{% endblock %}