Browse Source
Merge pull request #15521 from abpframework/auto-merge/rel-7-0/1687
Merge branch dev with rel-7.0
pull/15533/head
maliming
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
modules/permission-management/src/Volo.Abp.PermissionManagement.Web/Pages/AbpPermissionManagement/PermissionManagementModal.cshtml
|
|
|
@ -1,4 +1,5 @@ |
|
|
|
@page |
|
|
|
@using System.Web; |
|
|
|
@using Microsoft.AspNetCore.Mvc.Localization |
|
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal |
|
|
|
@using Volo.Abp.Localization |
|
|
|
@ -12,7 +13,7 @@ |
|
|
|
|
|
|
|
<form method="post" asp-page="/AbpPermissionManagement/PermissionManagementModal" data-script-class="abp.modals.PermissionManagement" id="PermissionManagementForm"> |
|
|
|
<abp-modal size="Large"> |
|
|
|
<abp-modal-header title="@(L["Permissions"].Value) - @Model.EntityDisplayName"></abp-modal-header> |
|
|
|
<abp-modal-header title="@(L["Permissions"].Value) - @(HttpUtility.HtmlEncode(Model.EntityDisplayName))"></abp-modal-header> |
|
|
|
<abp-modal-body class="custom-scroll-container"> |
|
|
|
<abp-input asp-for="SelectAllInAllTabs" check-box-hidden-input-render-mode="CheckBoxHiddenInputRenderMode.None" label="@L["SelectAllInAllTabs"].Value"/> |
|
|
|
<hr class="mt-2 mb-2"/> |
|
|
|
|