2019-04-25 22:55:05 -04:00
|
|
|
<div id="adminpage">
|
2017-12-01 00:40:55 -05:00
|
|
|
<h1>{{$title}} - {{$page}}</h1>
|
2021-03-27 13:28:09 -04:00
|
|
|
|
2021-08-20 03:47:53 -04:00
|
|
|
<h2>{{$logname}}</h2>
|
2021-03-27 13:28:09 -04:00
|
|
|
{{if $error }}
|
|
|
|
<div id="admin-error-message-wrapper" class="alert alert-warning">
|
|
|
|
<p>{{$error nofilter}}</p>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
2021-05-24 15:47:10 -04:00
|
|
|
<form>
|
|
|
|
<p>
|
|
|
|
<input type="search" name="q" value="{{$q}}" placeholder="search"></input>
|
|
|
|
<input type="Submit" value="search">
|
|
|
|
<a href="/admin/logs/view">clear</a>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>
|
|
|
|
<select name="level" onchange="this.form.submit()">
|
|
|
|
{{foreach $filtersvalues.level as $v }}
|
|
|
|
<option {{if $filters.level == $v}}selected{{/if}} value="{{$v}}">
|
|
|
|
{{if $v == ""}}Level{{/if}}
|
|
|
|
{{$v}}
|
|
|
|
</option>
|
|
|
|
{{/foreach}}
|
|
|
|
</select>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<select name="context" onchange="this.form.submit()">
|
|
|
|
{{foreach $filtersvalues.context as $v }}
|
|
|
|
<option {{if $filters.context == $v}}selected{{/if}} value="{{$v}}">
|
|
|
|
{{if $v == ""}}Context{{/if}}
|
|
|
|
{{$v}}
|
|
|
|
</option>
|
|
|
|
{{/foreach}}
|
|
|
|
</select>
|
|
|
|
</th>
|
|
|
|
<th>Message</th>
|
2021-03-27 13:28:09 -04:00
|
|
|
</tr>
|
2021-05-24 15:47:10 -04:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{foreach $data as $row}}
|
2021-08-20 03:47:53 -04:00
|
|
|
<tr id="ev-{{$row->id}}" class="log-event"
|
|
|
|
role="button" tabIndex="0"
|
|
|
|
aria-label="View details" aria-haspopup="true" aria-expanded="false"
|
|
|
|
style="cursor:pointer;"
|
|
|
|
title="Click to view details">
|
2021-05-24 15:47:10 -04:00
|
|
|
<td>{{$row->date}}</td>
|
|
|
|
<td>{{$row->level}}</td>
|
|
|
|
<td>{{$row->context}}</td>
|
|
|
|
<td>{{$row->message}}</td>
|
2021-03-27 13:28:09 -04:00
|
|
|
</tr>
|
2021-05-24 15:47:10 -04:00
|
|
|
<tr class="hidden" data-id="ev-{{$row->id}}"><th colspan="4">Data</th></tr>
|
2021-08-20 03:47:53 -04:00
|
|
|
{{foreach $row->getData() as $k=>$v}}
|
2021-05-24 15:47:10 -04:00
|
|
|
<tr class="hidden" data-id="ev-{{$row->id}}">
|
|
|
|
<th>{{$k}}</th>
|
|
|
|
<td colspan="3">
|
|
|
|
<pre>{{$v nofilter}}</pre>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
<tr class="hidden" data-id="ev-{{$row->id}}"><th colspan="4">Source</th></tr>
|
2021-08-20 03:47:53 -04:00
|
|
|
{{foreach $row->getSource() as $k=>$v}}
|
2021-05-24 15:47:10 -04:00
|
|
|
<tr class="hidden" data-id="ev-{{$row->id}}">
|
|
|
|
<th>{{$k}}</th>
|
|
|
|
<td colspan="3">{{$v}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
2021-03-27 13:28:09 -04:00
|
|
|
{{/foreach}}
|
2021-05-24 15:47:10 -04:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</form>
|
2021-03-27 13:28:09 -04:00
|
|
|
{{/if}}
|
2017-12-01 00:40:55 -05:00
|
|
|
</div>
|