mirror of https://github.com/portainer/portainer
19 lines
318 B
HTML
19 lines
318 B
HTML
|
<h2>Events</h2>
|
||
|
|
||
|
<table class="table">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Event</th>
|
||
|
<th>From</th>
|
||
|
<th>ID</th>
|
||
|
<th>Time</th>
|
||
|
</tr>
|
||
|
<tr ng-repeat="event in dockerEvents">
|
||
|
<td ng-bind="event.status"/>
|
||
|
<td ng-bind="event.from"/>
|
||
|
<td ng-bind="event.id"/>
|
||
|
<td ng-bind="event.time"/>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|