summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Reports/reports/templates/config_items/common.html
blob: d6ad303fc079c4e09750f2cd5b8ec12190d34d0d (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
37
38
39
40
41
42
{% extends "base-timeview.html" %}
{% load bcfg2_tags %}

{% block title %}Bcfg2 - Common Problems{% endblock %}

{% block extra_header_info %}
{% endblock%}

{% block pagebanner %}Common configuration problems{% endblock %}

{% block content %}
  <div id='threshold_box'>
    <form method='post' action='{{ request.path }}'>
    <span>Showing items with more then {{ threshold }} entries</span>
    <input type='text' name='threshold' value='{{ threshold }}' maxlength='5' size='5' />
    <input type='submit' value='Change' />
    </form>
  </div>
  {% for type_name, type_list in lists %}
    <div class='entry_list'>
      <div class='entry_list_head element_list_head' onclick='javascript:toggleMe("table_{{ type_name }}");'>
        <h3>{{ type_name|capfirst }} entries</h3>
        <div class='entry_expand_tab' id='plusminus_table_{{ type_name }}'>[&ndash;]</div>
      </div>
    {% if type_list %}
      <table id='table_{{ type_name }}' class='entry_list'>
      <tr style='text-align: left'><th>Type</th><th>Name</th><th>Count</th><th>Reason</th></tr>
      {% for entry, reason, interaction in type_list %}
        <tr class='{% cycle listview,listview_alt %}'>
          <td>{{ entry.kind }}</td>
          <td><a href="{% url reports_entry eid=entry.pk %}">{{ entry.name }}</a></td>
          <td>{{ interaction|length }}</td>
          <td><a href="{% url reports_item type=type_name pk=interaction.0 %}">{{ reason.short_list|join:"," }}</a></td>
        </tr>
      {% endfor %}
      </table>
    {% else %}
    <p>There are currently no inconsistent {{ type_name }} configuration entries.</p>
    {% endif %}
    </div>
  {% endfor %}
{% endblock %}