summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/clients/history.html
blob: 01d4ec2f48e9ffc39e7324a4b33f149200dd5d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% load bcfg2_tags %}

{% block title %}Bcfg2 - Interaction History{% endblock %}
{% block pagebanner %}Interaction history{% if client %} for {{ client.name }}{% endif %}{% endblock %}

{% block extra_header_info %}
{% endblock %}

{% block content %}
<div class='client_list_box'>
{% if entry_list %}
    {% filter_navigator %}
    {% include "widgets/interaction_list.inc" %}
{% else %}
    <p>No client records are available.</p>
{% endif %}
</div>
{% page_navigator %}
{% endblock %}