You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
482 B
13 lines
482 B
@model OrganizationViewModel |
|
@{ |
|
ViewData["Title"] = "Organization: " + Model.Organization.Name; |
|
} |
|
|
|
<h1>Organization <small>@Model.Organization.Name</small></h1> |
|
|
|
<h2>Information</h2> |
|
@Html.Partial("_ViewInformation", Model) |
|
<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)?')"> |
|
<button class="btn btn-danger" type="submit">Delete</button> |
|
</form>
|
|
|