Files
cloudron-box/webadmin/src/views/activity.html

34 lines
1.0 KiB
HTML
Raw Normal View History

2016-04-30 18:57:55 -07:00
<br/>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Activity Log</h1>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="card card-block" style="max-width: 100%">
<table class="table table-striped table-condensed table-hover">
<thead>
<tr>
2016-04-30 19:49:50 -07:00
<th class="col-md-2">Time</th>
<th class="col-md-2">Source</th>
<th class="col-md-6">Action</th>
2016-04-30 18:57:55 -07:00
</tr>
</thead>
<tbody>
<tr ng-repeat="eventLog in eventLogs">
2016-04-30 19:49:50 -07:00
<th scope="row">{{ eventLog.creationTime | prettyDate }}</td>
2016-05-02 09:32:39 -07:00
<td>{{ eventLog.source.username || eventLog.source.userId || eventLog.source.authType }} ({{ eventLog.source.ip || eventLog.source.appId }})</td>
2016-04-30 19:49:50 -07:00
<td>{{ eventLog | eventLogDetails }}</td>
2016-04-30 18:57:55 -07:00
</tr>
</tbody>
</table>
</div>
</div>
</div>