summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/clients/detail.html
blob: 4ac2123c1b9bd8ed75c781b46d47744abf45cb01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

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

{% block content %}
<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="/clients/{{client.name}}/{{i.id}}/"> {{i.timestamp}}
    {% endfor %}
</select>

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