thesis/ResoursesManager/ResoursesManager/Views/Statistics/Index.cshtml

58 lines
1.4 KiB
Plaintext

@model IEnumerable<ResoursesManager.Models.StatisticModel>
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.UserId)
</th>
<th>
@Html.DisplayNameFor(model => model.ResourceId)
</th>
<th>
@Html.DisplayNameFor(model => model.ReservationId)
</th>
<th>
@Html.DisplayNameFor(model => model.StatisticType)
</th>
<th>
@Html.DisplayNameFor(model => model.DateTime)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.UserId)
</td>
<td>
@Html.DisplayFor(modelItem => item.ResourceId)
</td>
<td>
@Html.DisplayFor(modelItem => item.ReservationId)
</td>
<td>
@Html.DisplayFor(modelItem => item.StatisticType)
</td>
<td>
@Html.DisplayFor(modelItem => item.DateTime)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.Id }) |
@Html.ActionLink("Details", "Details", new { id=item.Id }) |
@Html.ActionLink("Delete", "Delete", new { id=item.Id })
</td>
</tr>
}
</table>