Child: [2e9125] (diff)

Download this file

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