50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
<div class="logs-view-element">
|
|
<div ng-show="loading">
|
|
<i class="fa fa-spinner fa-spin fa-3x"></i>
|
|
</div>
|
|
<div ng-show="!loading">
|
|
<div class="container header">
|
|
<b>Usage logs for the last seven days</b>
|
|
<span class="right">
|
|
<button class="btn btn-default btn-toggle" ng-class="chartVisible ? 'active' : ''" ng-click="toggleChart()">
|
|
Show Chart
|
|
</button>
|
|
</span>
|
|
</div>
|
|
|
|
<div id="bar-chart" style="width: 800px; height: 500px;" ng-show="chartVisible">
|
|
<svg style="width: 800px; height: 500px;"></svg>
|
|
</div>
|
|
|
|
<div class="side-controls">
|
|
<div class="result-count">
|
|
Showing {{(logs | visibleLogFilter:kindsAllowed | filter:search | limitTo:150).length}} of
|
|
{{(logs | visibleLogFilter:kindsAllowed | filter:search).length}} matching logs
|
|
</div>
|
|
<div class="filter-input">
|
|
<input id="log-filter" class="form-control" placeholder="Filter Logs" type="text" ng-model="search.$">
|
|
</div>
|
|
</div>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<th>Description</th>
|
|
<th>Date/Time</th>
|
|
<th>User</th>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr class="log" ng-repeat="log in (logs | visibleLogFilter:kindsAllowed | filter:search | limitTo:150)">
|
|
<td>
|
|
<span class="circle" style="{{ 'background: ' + getColor(log.kind) }}"></span>
|
|
<span ng-bind-html="getDescription(log)"></span>
|
|
</td>
|
|
<td>{{ log.datetime }}</td>
|
|
<td>
|
|
<span class="entity-reference" name="log.performer.username" isrobot="log.performer.is_robot"></span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|