btcpayserver/BTCPayServer/Views/Server/ListUsers.cshtml

30 lines
732 B
Plaintext
Raw Normal View History

@model UsersViewModel
@{
ViewData.SetActivePageAndTitle(ServerNavPages.Users);
}
<h4>@ViewData["Title"]</h4>
2018-05-08 10:57:53 +02:00
<partial name="_StatusMessage" for="StatusMessage" />
<table class="table table-sm table-responsive-md">
2018-04-06 06:20:12 +02:00
<thead>
<tr>
<th>Name</th>
<th>Email</th>
2017-12-04 06:39:02 +01:00
<th>Actions</th>
</tr>
</thead>
<tbody>
2018-04-06 06:20:12 +02:00
@foreach (var user in Model.Users)
{
<tr>
<td>@user.Name</td>
<td>@user.Email</td>
2018-03-22 11:55:14 +01:00
<td><a asp-action="User" asp-route-userId="@user.Id">Modify</a> <span> - </span> <a asp-action="DeleteUser" asp-route-userId="@user.Id">Remove</a></td>
</tr>
}
</tbody>
</table>