mirror of
https://github.com/bitwarden/server.git
synced 2025-05-04 11:12:20 -05:00
PartialAsync
This commit is contained in:
parent
e6aaddaed1
commit
4ce1e39095
@ -75,7 +75,7 @@
|
|||||||
<h1>Organization <small>@Model.Organization.Name</small></h1>
|
<h1>Organization <small>@Model.Organization.Name</small></h1>
|
||||||
|
|
||||||
<h2>Information</h2>
|
<h2>Information</h2>
|
||||||
@Html.Partial("_ViewInformation", Model)
|
@Html.PartialAsync("_ViewInformation", Model)
|
||||||
<form method="post" id="edit-form">
|
<form method="post" id="edit-form">
|
||||||
<h2>General</h2>
|
<h2>General</h2>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<h1>Organization <small>@Model.Organization.Name</small></h1>
|
<h1>Organization <small>@Model.Organization.Name</small></h1>
|
||||||
|
|
||||||
<h2>Information</h2>
|
<h2>Information</h2>
|
||||||
@Html.Partial("_ViewInformation", Model)
|
@Html.PartialAsync("_ViewInformation", Model)
|
||||||
<form asp-action="Delete" asp-route-id="@Model.Organization.Id"
|
<form asp-action="Delete" asp-route-id="@Model.Organization.Id"
|
||||||
onsubmit="return confirm('Are you sure you want to delete this organization (@Model.Organization.Name)?')">
|
onsubmit="return confirm('Are you sure you want to delete this organization (@Model.Organization.Name)?')">
|
||||||
<button class="btn btn-danger" type="submit">Delete</button>
|
<button class="btn btn-danger" type="submit">Delete</button>
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
<h1>User <small>@Model.User.Email</small></h1>
|
<h1>User <small>@Model.User.Email</small></h1>
|
||||||
|
|
||||||
<h2>Information</h2>
|
<h2>Information</h2>
|
||||||
@Html.Partial("_ViewInformation", Model)
|
@Html.PartialAsync("_ViewInformation", Model)
|
||||||
<form method="post" id="edit-form">
|
<form method="post" id="edit-form">
|
||||||
<h2>General</h2>
|
<h2>General</h2>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<h1>User <small>@Model.User.Email</small></h1>
|
<h1>User <small>@Model.User.Email</small></h1>
|
||||||
|
|
||||||
<h2>Information</h2>
|
<h2>Information</h2>
|
||||||
@Html.Partial("_ViewInformation", Model)
|
@Html.PartialAsync("_ViewInformation", Model)
|
||||||
<form asp-action="Delete" asp-route-id="@Model.User.Id"
|
<form asp-action="Delete" asp-route-id="@Model.User.Id"
|
||||||
onsubmit="return confirm('Are you sure you want to delete this user (@Model.User.Email)?')">
|
onsubmit="return confirm('Are you sure you want to delete this user (@Model.User.Email)?')">
|
||||||
<button class="btn btn-danger" type="submit">Delete</button>
|
<button class="btn btn-danger" type="submit">Delete</button>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user