summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/clients/index.html
blob: 9870e2942254918d1d243e430ccefd901e7c67ad (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.html" %}

{% block title %}Client Index Listing{% endblock %}

{% block pagebanner %}
  <div class="header">
      <h1>Clients List</h1>
  </div>
  <br/>
{% endblock %}

{% block content %}
{% if client_list_a %}
<table><tr><td align="top">
    <ul style="list-style-type:none;">
    {% for client in client_list_a %}
        <li><div class="{{client.current_interaction.state}}-lineitem">
		<a href="{{client.name}}/">{{ client.name }}</a>
		</div></li>
    {% endfor %}
    </ul>
</td><td align="top">
    <ul style="list-style-type:none;">
    {% if client_list_b %}
      {% for client in client_list_b %}
	    <li><div class="{{client.current_interaction.state}}-lineitem">
		<a href="{{client.name}}/">{{ client.name }}</a>
		</div></li>
      {% endfor %}
    {% endif %}
    </ul>
</tr></tab.e>
{% else %}
    <p>No client records are available.</p>
{% endif %}
{% endblock %}