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

32 lines
721 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model IEnumerable<Yavsc.Models.Musical.Profiles.DjSettings>
@{
2023-03-20 09:13:16 +00:00
ViewData["Title"] = "Index";
2019-01-01 16:28:47 +00:00
}
2023-03-20 09:13:16 +00:00
<h2>Index</h2>
2019-01-01 16:28:47 +00:00
<p>
2023-03-20 09:13:16 +00:00
<a asp-action="Create">Create New</a>
2019-01-01 16:28:47 +00:00
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.SoundCloudId)
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.SoundCloudId)
</td>
<td>
<a asp-action="Edit" asp-route-id="@item.UserId">Edit</a> |
<a asp-action="Details" asp-route-id="@item.UserId">Details</a> |
<a asp-action="Delete" asp-route-id="@item.UserId">Delete</a>
</td>
</tr>
}
</table>