blob: a4a827ea28b24b269c40f32484b6c1f39e385acc (
plain)
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
|
<!-- ================= Events view =================== -->
<!-- Filter Box: This the top bar which contains the search box. -->
<div id=events-view-filter-box>
<table width=100%>
<tr>
<td width=1%>Filter:</td>
<td width=98%><input type="search" incremental id=events-view-filter-input /></td>
<td width=1% id=events-view-filter-count>(1 of 34)</td>
</tr>
</table>
</div>
<!-- Events Box: This the panel on the left which lists the sources -->
<div id=events-view-source-list>
<table id=events-view-source-list-table cellspacing=0 cellpadding=0 width=100%>
<thead>
<tr>
<td style='border-left:0'><input type=checkbox id=events-view-select-all /></td>
<td id=events-view-sort-by-id>ID</td>
<td id=events-view-sort-by-source>Source</td>
<td id=events-view-sort-by-description width=99%>Description</td>
</tr>
</thead>
<!-- Events table body: This is where request rows go into -->
<tbody id=events-view-source-list-tbody></tbody>
</table>
</div>
<!-- Splitter Box: This is a handle to resize the vertical divider -->
<div id=events-view-splitter-box class=vertical-splitter></div>
<!-- Details box: This is the panel on the right which shows information -->
<div id=events-view-details-log-box class="event-log content-box"></div>
|