2021-03-27 18:36:55 +01:00
|
|
|
<div id="adminpage">
|
|
|
|
<h1>{{$title}} - {{$page}}</h1>
|
|
|
|
|
|
|
|
<h3>{{$logname}}</h3>
|
|
|
|
{{if $error }}
|
|
|
|
<div id="admin-error-message-wrapper" class="alert alert-warning">
|
|
|
|
<p>{{$error nofilter}}</p>
|
|
|
|
</div>
|
2021-05-25 14:10:36 +02:00
|
|
|
{{else}}
|
|
|
|
<form method="get" class="row">
|
|
|
|
<div class="col-xs-10">
|
|
|
|
<div class="form-group form-group-search">
|
|
|
|
<input accesskey="s" id="nav-search-input-field" class="form-control form-search"
|
|
|
|
type="text" name="q" data-toggle="tooltip" title="Search in logs"
|
|
|
|
placeholder="Search" value="{{$q}}">
|
|
|
|
<button class="btn btn-default btn-sm form-button-search"
|
|
|
|
type="submit">Search</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="xol-xs-2">
|
|
|
|
<a href="/admin/logs/view" class="btn btn-default">Show all</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2021-03-27 18:36:55 +01:00
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
2021-05-25 14:10:36 +02:00
|
|
|
<th class="dropdown">
|
|
|
|
<a class="dropdown-toggle text-nowrap" type="button" id="level" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
Level {{if $filters.level}}({{$filters.level}}){{/if}}<span class="caret"></span>
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="level">
|
|
|
|
{{foreach $filtersvalues.level as $v }}
|
|
|
|
<li {{if $filters.level == $v}}class="active"{{/if}}>
|
|
|
|
<a href="/admin/logs/view?level={{$v}}" data-filter="level" data-filter-value="{{$v}}">
|
|
|
|
{{if $v == ""}}ALL{{/if}}{{$v}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/foreach}}
|
|
|
|
</ul>
|
|
|
|
</th>
|
|
|
|
<th class="dropdown">
|
|
|
|
<a class="dropdown-toggle text-nowrap" type="button" id="context" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
|
|
Context {{if $filters.context}}({{$filters.context}}){{/if}}<span class="caret"></span>
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="context">
|
|
|
|
{{foreach $filtersvalues.context as $v }}
|
|
|
|
<li {{if $filters.context == $v}}class="active"{{/if}}>
|
|
|
|
<a href="/admin/logs/view?context={{$v}}" data-filter="context" data-filter-value="{{$v}}">
|
|
|
|
{{if $v == ""}}ALL{{/if}}{{$v}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/foreach}}
|
|
|
|
</ul>
|
|
|
|
</th>
|
2021-03-27 18:36:55 +01:00
|
|
|
<th>Message</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{foreach $data as $row}}
|
|
|
|
<tr id="ev-{{$row->id}}" class="log-event"
|
|
|
|
data-data="{{$row->data}}" data-source="{{$row->source}}">
|
|
|
|
<td>{{$row->date}}</td>
|
|
|
|
<td class="
|
|
|
|
{{if $row->level == "CRITICAL"}}bg-danger
|
|
|
|
{{elseif $row->level == "ERROR"}}bg-danger
|
|
|
|
{{elseif $row->level == "WARNING"}}bg-warinig
|
|
|
|
{{elseif $row->level == "NOTICE"}}bg-info
|
|
|
|
{{elseif $row->level == "DEBUG"}}text-muted
|
|
|
|
{{/if}}
|
2021-05-25 14:10:36 +02:00
|
|
|
">{{$row->level}}</td>
|
2021-03-27 18:36:55 +01:00
|
|
|
<td>{{$row->context}}</td>
|
|
|
|
<td style="width:80%">{{$row->message}}</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-05-25 14:10:36 +02:00
|
|
|
{{/if}}
|
2021-03-27 18:36:55 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="logdetail" class="modal fade" tabindex="-1" role="dialog">
|
|
|
|
<div class="modal-dialog modal-lg" style="width:90%" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
|
<h4 class="modal-title">Event details</h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<table class="table main-data">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>Level</th>
|
|
|
|
<th>Context</th>
|
|
|
|
<th>Message</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody><tr></tr></tbody>
|
|
|
|
</table>
|
|
|
|
<table class="table source-data">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>File</th>
|
|
|
|
<th>Line</th>
|
|
|
|
<th>Function</th>
|
|
|
|
<th>UID</th>
|
|
|
|
<th>Process ID</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td data-value="file"></td>
|
|
|
|
<td data-value="line"></td>
|
|
|
|
<td data-value="function" style="width:70%"></td>
|
|
|
|
<td data-value="uid"></td>
|
|
|
|
<td data-value="process_id"></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="event-source">
|
|
|
|
</div>
|
|
|
|
<div class="event-data">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2021-05-25 14:10:36 +02:00
|
|
|
<button type="button" class="btn btn-default" data-previous><</button>
|
|
|
|
<button type="button" class="btn btn-default" data-next>></button>
|
2021-03-27 18:36:55 +01:00
|
|
|
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
|
|
|
|
</div>
|
|
|
|
</div><!-- /.modal-content -->
|
|
|
|
</div><!-- /.modal-dialog -->
|
|
|
|
</div><!-- /.modal -->
|