summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Reports/reports/templates/clients/detail.html
blob: 77f50580453f9b1fb14c618f3f98d4e4e968a5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block title %}Info for: {{client.name}}{% endblock %}

{% block content %}
<h2>Client Status Detail page for {{client.name}}</h2><br/>
<b>Select time: </b>
<select name=quick onChange="MM_jumpMenu('parent',this,0)">
    {% for i in client.interactions.all %}
        <option {% ifequal i.id interaction.id %}selected {% endifequal %} value="{% url Bcfg2.Server.Reports.reports.views.client_detail hostname=client.name, pk=i.id %}"> {{i.timestamp}}
    {% endfor %}
</select>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="{% url Bcfg2.Server.Reports.reports.views.client_manage hostname=client.name %}">Manage</a> {{client.name}} options.<br/>

{% include "clients/client-nodebox.html" %}
{% endblock %}