67 lines
1.8 KiB
Text
67 lines
1.8 KiB
Text
@model IEnumerable<BannerViewModel>
|
|
|
|
@{
|
|
ViewData["Title"] = "Index";
|
|
}
|
|
|
|
<h1>Index</h1>
|
|
|
|
<p>
|
|
<a asp-action="Create" class="btn btn-primary">Create New</a>
|
|
</p>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Id)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Title)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Description)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.Content)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.LinkUrl)
|
|
</th>
|
|
<th>
|
|
@Html.DisplayNameFor(model => model.ImageUrl)
|
|
</th>
|
|
<th>
|
|
Action
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model) {
|
|
<tr>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Id)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Title)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Description)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Content)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.LinkUrl)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.ImageUrl)
|
|
</td>
|
|
<td>
|
|
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
|
|
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
|
|
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|