yavsc/src/Yavsc/Views/Comments/Index.cshtml

62 lines
1.5 KiB
Text
Raw Normal View History

2017-10-04 23:53:47 +02:00
@model IEnumerable<Yavsc.Models.Blog.Comment>
@{
2019-06-23 00:05:23 +01:00
ViewData["Title"] = @SR["Index"];
2017-10-04 23:53:47 +02:00
}
2019-06-23 00:05:23 +01:00
<h2>@SR["Index"]</h2>
2017-10-04 23:53:47 +02:00
<p>
2019-06-23 00:05:23 +01:00
<a asp-action="Create">@SR["Create New"]</a>
2017-10-04 23:53:47 +02:00
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.Content)
</th>
<th>
@Html.DisplayNameFor(model => model.DateCreated)
</th>
<th>
@Html.DisplayNameFor(model => model.DateModified)
</th>
<th>
@Html.DisplayNameFor(model => model.UserCreated)
</th>
<th>
@Html.DisplayNameFor(model => model.UserModified)
</th>
<th>
@Html.DisplayNameFor(model => model.Visible)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Content)
</td>
<td>
@Html.DisplayFor(modelItem => item.DateCreated)
</td>
<td>
@Html.DisplayFor(modelItem => item.DateModified)
</td>
<td>
@Html.DisplayFor(modelItem => item.UserCreated)
</td>
<td>
@Html.DisplayFor(modelItem => item.UserModified)
</td>
<td>
@Html.DisplayFor(modelItem => item.Visible)
</td>
<td>
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
<a asp-action="Delete" asp-route-id="@item.Id">Delete</a>
</td>
</tr>
}
</table>