Added average duration to Time Requested in stats

This commit is contained in:
oslomp
2018-12-15 16:43:15 +01:00
parent 2e9be85cc4
commit 6adbecec9c
2 changed files with 10 additions and 5 deletions

View File

@ -76,7 +76,8 @@
<tr>
<th>#</th>
<th>User</th>
<th>Duration</th>
<th style="text-align: right;">Duration</th>
<th>Average</th>
</tr>
</thead>
<tbody>
@ -84,7 +85,8 @@
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.user__name }}</td>
<td>{{ stat.duration }}</td>
<td style="text-align: right;">{{ stat.duration }}</td>
<td>{{stat.avg_dur}}</td>
</tr>
{% endfor %}
</tbody>