2020-04-28 17:48:06 -04:00
|
|
|
@{
|
|
|
|
var loc = SharedLibraryCore.Utilities.CurrentLocalization.LocalizationIndex;
|
|
|
|
}
|
2022-04-19 19:43:58 -04:00
|
|
|
<div class="content mt-0">
|
|
|
|
<h2 class="content-title mt-20">@ViewBag.Title</h2>
|
2020-04-28 17:48:06 -04:00
|
|
|
|
2022-04-19 19:43:58 -04:00
|
|
|
<table class="table">
|
|
|
|
<thead class="d-none d-lg-table-header-group">
|
|
|
|
<tr class="bg-primary text-light pt-2 pb-2">
|
2020-04-28 17:48:06 -04:00
|
|
|
<th scope="col">@loc["WEBFRONT_PENALTY_TEMPLATE_TYPE"]</th>
|
|
|
|
<th scope="col">@loc["WEBFRONT_PENALTY_TEMPLATE_ADMIN"]</th>
|
|
|
|
<th scope="col">@loc["WEBFRONT_PENALTY_TEMPLATE_NAME"]</th>
|
|
|
|
<th scope="col">@loc["WEBFRONT_ADMIN_AUDIT_LOG_INFO"]</th>
|
|
|
|
<th scope="col">@loc["WEBFRONT_ADMIN_AUDIT_LOG_CURRENT"]</th>
|
|
|
|
<th scope="col" class="text-right">@loc["WEBFRONT_ADMIN_AUDIT_LOG_TIME"]</th>
|
|
|
|
</tr>
|
2022-04-19 19:43:58 -04:00
|
|
|
</thead>
|
|
|
|
<tbody id="audit_log_table_body" class="border-bottom bg-dark">
|
|
|
|
<partial name="_ListAuditLog"/>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-06-02 17:54:26 -04:00
|
|
|
<i id="loaderLoad" class="loader-load-more oi oi-chevron-bottom text-center w-full text-primary mt-10"></i>
|
2022-04-19 19:43:58 -04:00
|
|
|
</div>
|
2020-04-28 17:48:06 -04:00
|
|
|
|
|
|
|
@section scripts {
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
|
|
initLoader('/Admin/ListAuditLog', '#audit_log_table_body', @ViewBag.IntialOffset);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
}
|