@inject Bit.Core.Services.IFeatureService FeatureService
@model OrganizationViewModel
- Id
@Model.Organization.Id
- Plan
- @Model.Organization.Plan
- Expires
- @(Model.Organization.ExpirationDate?.ToString() ?? "-")
- Users
-
@Model.OccupiedSeatCount / @(Model.Organization.Seats?.ToString() ?? "-")
(@Model.UserInvitedCount /
@Model.UserAcceptedCount /
@Model.UserConfirmedCount)
- Owners
- @(string.IsNullOrWhiteSpace(Model.Owners) ? "None" : Model.Owners)
- Admins
- @(string.IsNullOrWhiteSpace(Model.Admins) ? "None" : Model.Admins)
- Using 2FA
- @(Model.Organization.TwoFactorIsEnabled() ? "Yes" : "No")
- Groups
- @Model.GroupCount
- Policies
- @Model.PolicyCount
- Public/Private Keys
- @(Model.HasPublicPrivateKeys ? "Yes" : "No")
- Created
- @Model.Organization.CreationDate.ToString()
- Modified
- @Model.Organization.RevisionDate.ToString()
Password Manager
- Items
- @Model.CipherCount
- Collections
- @Model.CollectionCount
- Administrators manage all collections
- @(Model.Organization.AllowAdminAccessToAllCollectionItems ? "On" : "Off")
- Limit collection creation to administrators
- @(Model.Organization.LimitCollectionCreation ? "On" : "Off")
- Limit collection deletion to administrators
- @(Model.Organization.LimitCollectionDeletion ? "On" : "Off")
Secrets Manager
- Secrets
- @(Model.UseSecretsManager ? Model.SecretsCount: "N/A")
- Projects
- @(Model.UseSecretsManager ? Model.ProjectsCount: "N/A")
- Machine Accounts
- @(Model.UseSecretsManager ? Model.ServiceAccountsCount: "N/A")
- Secrets Manager Seats
- @(Model.UseSecretsManager ? Model.OccupiedSmSeatsCount: "N/A" )