mirror of
https://github.com/bitwarden/server.git
synced 2025-06-18 18:13:48 -05:00

* Add Provider Plan details to Provider Admin pages * Run dotnet format * Thomas' feedback * Updated code ownership * Robert's feedback * Thomas' feedback
16 lines
452 B
Plaintext
16 lines
452 B
Plaintext
@model ProviderViewModel
|
|
@{
|
|
ViewData["Title"] = "Provider: " + Model.Provider.DisplayName();
|
|
}
|
|
|
|
<h1>Provider <small>@Model.Provider.DisplayName()</small></h1>
|
|
|
|
<h2>Information</h2>
|
|
@await Html.PartialAsync("_ViewInformation", Model)
|
|
@if (Model.ProviderPlanViewModels.Any())
|
|
{
|
|
@await Html.PartialAsync("ProviderPlans", Model.ProviderPlanViewModels)
|
|
}
|
|
@await Html.PartialAsync("Admins", Model)
|
|
@await Html.PartialAsync("Organizations", Model)
|