Add tooltip to show the exact time in event log

This commit is contained in:
Johannes Zellner
2016-07-14 12:46:52 +02:00
parent d501310dc3
commit ebb564f623
4 changed files with 11 additions and 4 deletions

View File

@@ -30,13 +30,13 @@
<thead>
<tr>
<th class="col-md-2">Time</th>
<th class="col-md-2">Source</th>
<th class="col-md-6">Action</th>
<th class="col-md-3">Source</th>
<th class="col-md-7">Action</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="eventLog in eventLogs">
<th scope="row">{{ eventLog.creationTime | prettyDate }}</td>
<td><span uib-tooltip="{{eventLog.creationTime}}" class="arrow">{{ eventLog.creationTime | prettyDate }}</span></td>
<td>{{ eventLog.source.username || eventLog.source.userId || eventLog.source.authType }} <span ng-show="eventLog.source.ip || eventLog.source.appId"> ({{ eventLog.source.ip || eventLog.source.appId }}) </span> </td>
<td>{{ eventLog | eventLogDetails }}</td>
</tr>