blob: 8e3d800e24949cd46db41566adf4dbd5f9ec5eec (
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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
<!doctype html>
<html lang="en">
<head>
{{> headmeta}}
<title>{{channel}} ({{network}}) - tirclogv</title>
<script src="/log.js"></script>
</head>
<body>
<div id="gridwrapper" data-page="withheader">
{{> header}}
<main>
<h1>Logs: {{network}}/{{channel}}</h1>
<div class="pagepicker">
{{#picker}}
{{#prevpage}}<a href="?page={{.}}">{{/prevpage}}←Prev{{#prevpage}}</a>{{/prevpage}}
{{#nextpage}}<a href="?page={{.}}">{{/nextpage}}Next→{{#nextpage}}</a>{{/nextpage}}
<div class="pagepicker-pages">
Page
{{#firstpage}}
<a href="?page=1">1</a>
{{/firstpage}}
{{#leftdots}}
..
{{/leftdots}}
{{#leftnums}}
<a href="?page={{.}}">{{.}}</a>
{{/leftnums}}
<b>{{curnum}}</b>
{{#rightnums}}
<a href="?page={{.}}">{{.}}</a>
{{/rightnums}}
{{#rightdots}}
..
{{/rightdots}}
{{#lastpage}}
<a href="?page={{npages}}">{{npages}}</a>
{{/lastpage}}
</div>
{{/picker}}
<span style="margin: 0 9px 0 4px">—</span>
{{totalevents}} events total
</div><br>
<div class="viewopts">
View:
{{^efAll}}<a href="?page={{&picker.curnum}}&ef=all">{{/efAll}}All{{^efAll}}</a>{{/efAll}}
{{^efCompr}}<a href="?page={{&picker.curnum}}&ef=compr">{{/efCompr}}Compressed{{^efCompr}}</a>{{/efCompr}}
</div>
<table id="events"><tbody>
{{#events}}
<tr{{#classlist}} class="{{&.}}"{{/classlist}}>
<td><a href="/log/{{&alias}}?eid={{&linkid}}#ev-{{&linkid}}" name="ev-{{&linkid}}">{{&datetime}}</a></td>
<td>{{#nickwrap1}}<span class="nickwrap">{{&.}}</span>{{/nickwrap1}}<span class="nick">{{nick}}</span>{{#nickwrap2}}<span class="nickwrap">{{&.}}</span>{{/nickwrap2}}</td>
<td>{{message}}</td>
</tr>
{{/events}}
</tbody></table>
<div class="pagepicker">
{{#picker}}
{{#prevpage}}<a href="?page={{.}}">{{/prevpage}}{{^prevpage}}<span class="link-disabled">{{/prevpage}}←Prev</a>
{{#nextpage}}<a href="?page={{.}}">{{/nextpage}}{{^nextpage}}<span class="link-disabled">{{/nextpage}}Next→</a>
<div class="pagepicker-pages">
Page
{{#firstpage}}
<a href="?page=1">1</a>
{{/firstpage}}
{{#leftdots}}
..
{{/leftdots}}
{{#leftnums}}
<a href="?page={{.}}">{{.}}</a>
{{/leftnums}}
<b>{{curnum}}</b>
{{#rightnums}}
<a href="?page={{.}}">{{.}}</a>
{{/rightnums}}
{{#rightdots}}
..
{{/rightdots}}
{{#lastpage}}
<a href="?page={{npages}}">{{npages}}</a>
{{/lastpage}}
</div>
{{/picker}}
</div>
<p>All times are in UTC.</p>
</main>
{{> footer}}
</div>
</body>
</html>
|