diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor index f89082404a..039abf3ef1 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor +++ b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/RoleManagement.razor @@ -9,61 +9,69 @@ @inject AbpBlazorMessageLocalizerHelper LH @inherits AbpCrudPageBase -@* ************************* PAGE HEADER ************************* *@ - - - @L["Roles"] - - - @if ( HasCreatePermission ) - { - - } - - -@* ************************* DATA GRID ************************* *@ - - - - - - - - - - - - - - @(context.Name) - @if (context.IsDefault) + + + @* ************************* PAGE HEADER ************************* *@ + + + @L["Roles"] + + + @if ( HasCreatePermission ) { - @L["DisplayName:IsDefault"] + } - @if (context.IsPublic) - { - @L["DisplayName:IsPublic"] - } - - - - + + + + + @* ************************* DATA GRID ************************* *@ + + + + + + + + + + + + + + @(context.Name) + @if (context.IsDefault) + { + @L["DisplayName:IsDefault"] + } + @if (context.IsPublic) + { + @L["DisplayName:IsPublic"] + } + + + + + + @* ************************* CREATE MODAL ************************* *@ @if (HasCreatePermission) diff --git a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor index 6697a341e5..6da99733ac 100644 --- a/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor +++ b/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor @@ -8,63 +8,71 @@ @inject AbpBlazorMessageLocalizerHelper LH @inherits AbpCrudPageBase -@* ************************* PAGE HEADER ************************* *@ - - -

@L["Users"]

-
- - @if (HasCreatePermission) - { - - } - -
-@* ************************* DATA GRID ************************* *@ - - - - - - - - - - - - - - @(context.As().UserName) - - - - - @(context.As().Email) - - - - - @(context.As().PhoneNumber) - - - - + + + @* ************************* PAGE HEADER ************************* *@ + + +

@L["Users"]

+
+ + @if (HasCreatePermission) + { + + } + +
+
+ + @* ************************* DATA GRID ************************* *@ + + + + + + + + + + + + + + @(context.As().UserName) + + + + + @(context.As().Email) + + + + + @(context.As().PhoneNumber) + + + + + +
@* ************************* CREATE MODAL ************************* *@ @if (HasCreatePermission) diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Pages/TenantManagement/TenantManagement.razor b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Pages/TenantManagement/TenantManagement.razor index 5f0067c6f5..59d2d70489 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Pages/TenantManagement/TenantManagement.razor +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.Blazor/Pages/TenantManagement/TenantManagement.razor @@ -6,57 +6,65 @@ @using Volo.Abp.TenantManagement.Localization @inject AbpBlazorMessageLocalizerHelper LH @inherits AbpCrudPageBase -@* ************************* PAGE HEADER ************************* *@ - - - @L["Tenants"] - - - @if (HasCreatePermission) - { - - } - - -@* ************************* DATA GRID ************************* *@ - - - - - - - - - - - - - - - @(context.Name) - - - - + + + @* ************************* PAGE HEADER ************************* *@ + + + @L["Tenants"] + + + @if (HasCreatePermission) + { + + } + + + + + @* ************************* DATA GRID ************************* *@ + + + + + + + + + + + + + + + @(context.Name) + + + + + + @* ************************* CREATE MODAL ************************* *@ @if (HasCreatePermission)