Revert "added Time Requested to stats"

This reverts commit 38feb0d39e.
This commit is contained in:
Daan Sprenkels
2018-11-28 12:28:19 +01:00
parent 38feb0d39e
commit d827ec39d2
2 changed files with 2 additions and 53 deletions

View File

@ -66,34 +66,8 @@
</table>
</div>
</div>
<div class="col-md-6">
<h2>Time Requested</h2>
<h4>Total: {{stats.total_time_requested}}</h4>
<h4>Top {{ stats.stats_top_count }}:</h4>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>User</th>
<th>Duration</th>
</tr>
</thead>
<tbody>
{% for stat in stats.time_requested %}
<tr>
<th>{{ forloop.counter }}</th>
<td>{{ stat.user__name }}</td>
<td>{{ stat.duration }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<div class="col-md-6">
<h2>Unique requests</h2>
<h4>Total: {{stats.total_unique_requests}}</h4>
<h4>Top {{ stats.stats_top_count }}:</h4>
<div class="table-responsive">
<table class="table table-striped">