summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/displays/sys_view.html
blob: bf80f545d547b240759729ee59c4d94c7aec4612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% load django_templating_sigh %}

{% block title %}System-View Display{% endblock %}
{% block pagebanner %}
  <div class="header">
      <h1>BCFG Performance Timings</h1>
      <span class="notebox">Report Run @ {% now "F j, Y P"%}</span>
  </div>
  <br/>
{% endblock %}
{% block content %}
  {% include "displays/summary-block.html" %}
  {% for client in client_list %}
    {% set_interaction "foo" %}
    {% include "clients/client-nodebox.html" %}
  {% endfor %}
{% endblock %}