mirror of
https://github.com/bitwarden/server.git
synced 2025-06-26 13:48:47 -05:00
79 lines
3.5 KiB
Plaintext
79 lines
3.5 KiB
Plaintext
@using Bit.Admin.Enums;
|
|
@using Bit.Core.AdminConsole.Enums.Provider
|
|
@inject Bit.Admin.Services.IAccessControlService AccessControlService
|
|
@model ProviderViewModel
|
|
|
|
@{
|
|
var canResendEmailInvite = AccessControlService.UserHasPermission(Permission.Provider_ResendEmailInvite);
|
|
}
|
|
|
|
<h2>Administrators</h2>
|
|
<div class="row">
|
|
<div class="col-8">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 190px;">Email</th>
|
|
<th style="width: 160px;">Role</th>
|
|
<th style="width: 40px;">Status</th>
|
|
<th style="width: 30px;"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if(!Model.ProviderUsers.Any())
|
|
{
|
|
<tr>
|
|
<td colspan="6">No results to list.</td>
|
|
</tr>
|
|
}
|
|
else
|
|
{
|
|
@foreach(var user in Model.ProviderUsers)
|
|
{
|
|
<tr>
|
|
<td class="align-middle">
|
|
@user.Email
|
|
</td>
|
|
<td class="align-middle">
|
|
@if(@user.Type == 0)
|
|
{
|
|
<span>Provider Admin</span>
|
|
}
|
|
else
|
|
{
|
|
<span>Service User</span>
|
|
}
|
|
</td>
|
|
<td class="align-middle">
|
|
@user.Status
|
|
</td>
|
|
<td>
|
|
@if(user.Status.Equals(ProviderUserStatusType.Confirmed)
|
|
&& @Model.Provider.Status.Equals(ProviderStatusType.Pending)
|
|
&& canResendEmailInvite)
|
|
{
|
|
@if(@TempData["InviteResentTo"] != null && @TempData["InviteResentTo"].ToString() == @user.UserId.Value.ToString())
|
|
{
|
|
<button class="btn btn-outline-success btn-sm disabled" disabled>Invite Resent!</button>
|
|
}
|
|
else
|
|
{
|
|
<a class="btn btn-outline-secondary btn-sm"
|
|
data-id="@user.Id" asp-controller="Providers"
|
|
asp-action="ResendInvite" asp-route-ownerId="@user.UserId"
|
|
asp-route-providerId="@Model.Provider.Id">
|
|
Resend Setup Invite
|
|
</a>
|
|
}
|
|
}
|
|
</td>
|
|
</tr>
|
|
}
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|