summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Reports/reports/templates/displays/sys_view.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Reports/reports/templates/displays/sys_view.html')
-rw-r--r--src/lib/Server/Reports/reports/templates/displays/sys_view.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/lib/Server/Reports/reports/templates/displays/sys_view.html b/src/lib/Server/Reports/reports/templates/displays/sys_view.html
new file mode 100644
index 000000000..1298059bf
--- /dev/null
+++ b/src/lib/Server/Reports/reports/templates/displays/sys_view.html
@@ -0,0 +1,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 %}