27 lines
681 B
HTML
27 lines
681 B
HTML
{$layout}
|
|
{$template "menu"}
|
|
{$template "/left_menu_with_menu"}
|
|
|
|
<div class="right-box with-menu">
|
|
<h3 class="ui header">ECH Degrade Audit Logs</h3>
|
|
|
|
<table class="ui table selectable celled">
|
|
<thead>
|
|
<tr>
|
|
<th>Scope</th>
|
|
<th>Operator</th>
|
|
<th>Result</th>
|
|
<th>Time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="item in auditLogs">
|
|
<td>{{item.scope}}</td>
|
|
<td>{{item.operator}}</td>
|
|
<td>{{item.result}}</td>
|
|
<td>{{item.createdAt}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|