liam-linux-account-manager/templates/activity.php

25 lines
388 B
PHP
Raw Permalink Normal View History

2021-11-16 15:11:32 +01:00
<?php
?>
<h1>Activity</h1>
<table class="table">
<col></col>
<col></col>
<col></col>
<col class="date"></col>
<thead>
<tr>
<th>Entity</th>
<th>User</th>
<th>Activity</th>
<th>Date (<abbr title="Coordinated Universal Time">UTC</abbr>)</th>
</tr>
</thead>
<tbody>
<?php
foreach($this->get('events') as $event) {
show_event($event);
}
?>
</tbody>
</table>