Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
988 B
PHP
Raw Permalink Normal View History

2018-12-16 15:18:17 -06:00
<div class="table-responsive">
<table id="eventlog" class="table table-hover table-condensed table-striped" data-ajax="true">
2018-12-16 15:18:17 -06:00
<thead>
<tr>
<th data-column-id="datetime" data-order="desc">{{ __('Timestamp') }}</th>
<th data-column-id="type">{{ __('Type') }}</th>
<th data-column-id="device_id">{{ __('Hostname') }}</th>
<th data-column-id="message">{{ __('Message') }}</th>
<th data-column-id="username">{{ __('User') }}</th>
2018-12-16 15:18:17 -06:00
</tr>
</thead>
</table>
</div>
<script>
$("#eventlog").bootgrid({
ajax: true,
rowCount: [50, 100, 250, -1],
2020-06-11 13:59:08 +02:00
navigation: ! {{ $hidenavigation }},
2018-12-16 15:18:17 -06:00
post: function ()
{
return {
device: "{{ $device }}",
2019-08-08 02:59:14 +02:00
device_group: "{{ $device_group }}",
2018-12-16 15:18:17 -06:00
eventtype: "{{ $eventtype }}"
};
},
url: "{{ url('/ajax/table/eventlog') }}"
2018-12-16 15:18:17 -06:00
});
</script>