summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/displays/sys_view.html
blob: 1298059bf6cf5e29fecb9d5952b612c312fefbfc (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 django_templating_sigh %}

{% block title %}System-View Display{% endblock %}
{% block pagebanner %}
  <div class="header">
      <h1>Grand System View</h1>
      <span class="notebox">Report Run @ {% now "F j, Y P"%}</span>
  </div>
  <br/>
{% endblock %}
{% block content %}
<center><h2>This view is deprecated and will be removed soon.</h2><br/>Please use the "Summary" view and drill down instead.</center>

  {% include "displays/summary-block.html" %}
  {% for client in client_list %}
    {% set_interaction "foo" %}
    {% include "clients/client-nodebox.html" %}
  {% endfor %}
{% endblock %}