2016-06-15 12:17:04 +02:00
|
|
|
<div class="col-xs-4 col-md-12 down-table-pane">
|
2016-06-29 07:39:40 +02:00
|
|
|
<div class="table-head-container">
|
|
|
|
<table class="table table-pane table-header">
|
|
|
|
<thead>
|
2016-07-06 10:39:40 +02:00
|
|
|
<th width="25%">// 'operation' | tr //</th>
|
2016-06-30 09:57:00 +02:00
|
|
|
<th width="25%">// 'details' | tr //</th>
|
|
|
|
<th width="25%">// 'user' | tr //</th>
|
|
|
|
<th width="25%">// 'creation_time' | tr //</th>
|
2016-06-29 07:39:40 +02:00
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
2016-06-29 08:18:36 +02:00
|
|
|
<div class="table-body-container" style="height: 220px;">
|
2016-06-29 07:39:40 +02:00
|
|
|
<table class="table table-pane">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2016-07-06 10:39:40 +02:00
|
|
|
<td colspan="5" height="120px" class="empty-hint" ng-if="vm.integratedLogs.length === 0"><h4 class="text-muted">// 'no_user_logs' | tr //</h4></td>
|
2016-06-29 07:39:40 +02:00
|
|
|
</tr>
|
|
|
|
<tr ng-if="vm.integratedLogs.length > 0" ng-repeat="t in vm.integratedLogs">
|
2016-06-30 09:57:00 +02:00
|
|
|
<td width="25%">//t.operation//</td><td width="25%">//t.repo_name//</td><td width="25%">//t.username//</td><td width="25%">//t.op_time | dateL : 'YYYY-MM-DD HH:mm:ss'//</td>
|
2016-06-29 07:39:40 +02:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|