-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpanel_table.html
executable file
·60 lines (49 loc) · 2.16 KB
/
panel_table.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html>
<head>
<link rel="stylesheet" type="text/css" href="panel_table.css">
<script src="panel_controls.js"></script>
</head>
<body>
<div class="button">
<input type="button" class="button" value="Clear Data" id="panel_table_body_clear_button">
</div>
<div class="button" style="float: right;">
<input type="button" class="button" value="Export to Excel" id="export-to-excel">
</div>
<div class="wrap">
<TABLE id="panel_table_id" class="tblClass">
<CAPTION>Django Query Profiler Data</CAPTION>
<thead style="position: sticky; top: 0;">
<tr>
<th width="72px">API name</th>
<th width="6px">Total request time <br/>(in ms)</th>
<th width="6px">Server request time <br/> (in ms)</th>
<th width="6px">Profiler time added <br/>(in ms)</th>
<th width="7px">Query time <br/>(in ms)</th>
<th width="10px">Select</th>
<th width="5px">Insert</th>
<th width="5px">Update</th>
<th width="5px">Delete</th>
<th width="8px">Transactional SQLs</th>
<th width="8px">Other SQLs</th>
<th width="10px">DB Rows fetched</th>
<th width="5px">Potential N+1's</th>
<th width="5px">Exact SQL duplicates</th>
<th width="20px">Details link</th>
</tr>
</thead>
<tbody id="panel_table_tbody_id">
</tbody>
<tfoot>
<tr>
<th colspan="15" style="text-align: center; font-size: 14px">
<a href="https://django-query-profiler.readthedocs.io/en/latest/chrome_plugin_columns.html" target="_blank">
What do the above columns mean
</a>
</th>
</tr>
</tfoot>
</TABLE>
</div>
</body>
</html>