Parent: [2e9125] (diff)

Child: [875040] (diff)

Download this file

site_admin_stats.html    37 lines (34 with data), 789 Bytes

 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
{% set page="stats" %}
{% extends 'site_admin.html' %}
{% block content %}
<table>
<thead>
<tr>
<th>Url</th>
<th>Ming</th>
<th>Mongo</th>
<th>Render</th>
<th>Template</th>
<th>Total Time</th>
</tr>
<tr>
<th>Mean</th>
<td>{{agg_timings.ming}}</td>
<td>{{agg_timings.mongo}}</td>
<td>{{agg_timings.render}}</td>
<td>{{agg_timings.template}}</td>
<td>{{agg_timings.total}}</td>
</tr>
</thead>
{% for url,timers in stats %}
<tr>
<td>{{url}}</td>
<td>{{timers.get('ming')}}</td>
<td>{{timers.get('mongo')}}</td>
<td>{{timers.get('render')}}</td>
<td>{{timers.get('template')}}</td>
<td>{{timers.get('total')}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}