mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
43 lines
974 B
Plaintext
43 lines
974 B
Plaintext
@page
|
|
@model ContosoHR.Pages.AuditEvents.IndexModel
|
|
|
|
@{
|
|
ViewData["Title"] = "Index";
|
|
}
|
|
|
|
<h1>Audit Events</h1>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.AuditEvents[0].TimeStamp)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.AuditEvents[0].UserName)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.AuditEvents[0].Query)
|
|
</th>
|
|
<th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model.AuditEvents) {
|
|
<tr>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.TimeStamp)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.UserName)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Query)
|
|
</td>
|
|
<td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|