summaryrefslogtreecommitdiffstats
path: root/templates/page-syslog.html
blob: b7e4c98e0055f5c9f7b40ca990e2418d51eb3cbf (plain) (blame)
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
<div class="container">
	<h1>Client Log</h1>
	<table class="table table-striped">
		<thead>
			<th></th>
			<th>Wann</th>
			<th>Client</th>
			<th>Ereignis</th>
			<th>Details</th>
		</thead>
		<tbody>
		{{#list}}
			<tr>
				<td><span class="glyphicon glyphicon-off"></span></td>
				<td class="text-right" nowrap="nowrap">{{date}}</td>
				<td>{{clientip}}</td>
				<td>{{description}}</td>
				<td>{{#extra}}<a class="btn btn-default btn-xs pull-left" data-toggle="collapse" data-target="#extra{{logid}}">&raquo;</a>{{/extra}}</td>
			</tr>
			<tr class="collapse" id="extra{{logid}}">
				<td colspan="5"><pre>{{extra}}</pre></td>
			</tr>
		{{/list}}
		</tbody>
	</table>
</div>