NDOJ/templates/internal/request_time.html

26 lines
703 B
HTML
Raw Normal View History

2023-03-07 07:19:45 +00:00
{% extends "two-column-content.html" %}
{% block left_sidebar %}
{% include "internal/left-sidebar.html" %}
{% endblock %}
{% block middle_content %}
<table class="table">
<thead>
<tr>
<th>URL Name</th>
<th><a href="{{current_path}}?order=time">Time (ms)</a></th>
<th><a href="{{current_path}}?order=count">Count</a></th>
</tr>
</thead>
<tbody>
{% for page in pages %}
<tr>
<td><a href="{{detail_path}}?url_name={{page['url_name']}}">{{page['url_name']}}</a></td>
<td>{{page['time'] | floatformat(2)}}</td>
<td>{{page['count']}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}