From ee50a84f573d25da08aa03485db42ee3789aa9b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Mon, 9 Oct 2017 11:12:41 +0300 Subject: [PATCH] Revisons on embedded resources and libs. --- .../AbpAspNetCoreMvcUiBootstrapModule.cs | 10 +- .../Views/Shared/_AppLayout.cshtml | 2 + ...olo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj | 24 +- .../libs/bootstrap/css/bootstrap.css | 0 .../libs/bootstrap/css/bootstrap.css.map | 0 .../libs/bootstrap/css/bootstrap.min.css | 0 .../libs/bootstrap/css/bootstrap.min.css.map | 0 .../libs/bootstrap/js/bootstrap.js | 0 .../libs/bootstrap/js/bootstrap.min.js | 0 .../{ => wwwroot}/libs/jquery/jquery-3.1.1.js | 0 .../libs/jquery/jquery-3.1.1.min.js | 0 .../libs/jquery/jquery-3.1.1.min.map | 0 .../tether/css/tether-theme-arrows-dark.css | 0 .../css/tether-theme-arrows-dark.min.css | 0 .../libs/tether/css/tether-theme-arrows.css | 0 .../tether/css/tether-theme-arrows.min.css | 0 .../libs/tether/css/tether-theme-basic.css | 0 .../tether/css/tether-theme-basic.min.css | 0 .../{ => wwwroot}/libs/tether/css/tether.css | 0 .../libs/tether/css/tether.min.css | 0 .../{ => wwwroot}/libs/tether/js/tether.js | 0 .../libs/tether/js/tether.min.js | 0 .../AbpAspNetCoreMvcUiModule.cs | 6 +- .../Volo.Abp.AspNetCore.Mvc.UI.csproj | 8 +- .../wwwroot/{ => libs}/abp/abp.jquery.js | 0 .../wwwroot/{ => libs}/abp/abp.js | 0 .../AbpIdentityWebModule.cs | 16 +- .../Areas/Identity/Views/Users/Index.cshtml | 10 + .../Volo.Abp.Identity.Web.csproj | 8 + .../libs/_identity/datatables/datatables.css | 647 + .../libs/_identity/datatables/datatables.js | 24492 ++++++++++++++++ .../_identity/datatables/datatables.min.css | 39 + .../_identity/datatables/datatables.min.js | 408 + 33 files changed, 25656 insertions(+), 14 deletions(-) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/bootstrap/css/bootstrap.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/bootstrap/css/bootstrap.css.map (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/bootstrap/css/bootstrap.min.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/bootstrap/css/bootstrap.min.css.map (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/bootstrap/js/bootstrap.js (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/bootstrap/js/bootstrap.min.js (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/jquery/jquery-3.1.1.js (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/jquery/jquery-3.1.1.min.js (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/jquery/jquery-3.1.1.min.map (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether-theme-arrows-dark.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether-theme-arrows-dark.min.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether-theme-arrows.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether-theme-arrows.min.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether-theme-basic.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether-theme-basic.min.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/css/tether.min.css (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/js/tether.js (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/{ => wwwroot}/libs/tether/js/tether.min.js (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/{ => libs}/abp/abp.jquery.js (100%) rename src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/{ => libs}/abp/abp.js (100%) create mode 100644 src/Volo.Abp.Identity.Web/wwwroot/libs/_identity/datatables/datatables.css create mode 100644 src/Volo.Abp.Identity.Web/wwwroot/libs/_identity/datatables/datatables.js create mode 100644 src/Volo.Abp.Identity.Web/wwwroot/libs/_identity/datatables/datatables.min.css create mode 100644 src/Volo.Abp.Identity.Web/wwwroot/libs/_identity/datatables/datatables.min.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/AbpAspNetCoreMvcUiBootstrapModule.cs b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/AbpAspNetCoreMvcUiBootstrapModule.cs index 3c384f3dbd..b2170d5f67 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/AbpAspNetCoreMvcUiBootstrapModule.cs +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/AbpAspNetCoreMvcUiBootstrapModule.cs @@ -16,11 +16,13 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap services.Configure(options => { + //TODO: Move libs under wwwroot! + options.Sources.Add( new EmbeddedFileSet( - "/libs/", + "/", GetType().GetTypeInfo().Assembly, - "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.libs" + "Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.wwwroot" ) ); @@ -42,10 +44,12 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap options.ScriptBundles.Add("GlobalScripts", new[] { + //TODO: Split jQuery to it's own nuget package! + "/libs/jquery/jquery-3.1.1.min.js", "/libs/tether/js/tether.min.js", "/libs/bootstrap/js/bootstrap.min.js", - "/abp/abp.jquery.js?_v" + DateTime.Now.Ticks + "/libs/abp/abp.jquery.js?_v" + DateTime.Now.Ticks //TODO: Move this to Volo.Abp.AspNetCore.Mvc.UI.. or to new jQuery package? }); }); } diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Views/Shared/_AppLayout.cshtml b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Views/Shared/_AppLayout.cshtml index 816ab58948..446b695822 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Views/Shared/_AppLayout.cshtml +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Views/Shared/_AppLayout.cshtml @@ -28,6 +28,8 @@ + + @RenderSection("scripts", false) \ No newline at end of file diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj index c94598c69b..de6144f615 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.csproj @@ -10,7 +10,29 @@ - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.css.map b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.css.map similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.css.map rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.css.map diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.min.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.min.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.min.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.min.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.min.css.map b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.min.css.map similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/css/bootstrap.min.css.map rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/css/bootstrap.min.css.map diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/js/bootstrap.js b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/js/bootstrap.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/js/bootstrap.js rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/js/bootstrap.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/js/bootstrap.min.js b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/js/bootstrap.min.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/bootstrap/js/bootstrap.min.js rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/bootstrap/js/bootstrap.min.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/jquery/jquery-3.1.1.js b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/jquery/jquery-3.1.1.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/jquery/jquery-3.1.1.js rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/jquery/jquery-3.1.1.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/jquery/jquery-3.1.1.min.js b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/jquery/jquery-3.1.1.min.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/jquery/jquery-3.1.1.min.js rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/jquery/jquery-3.1.1.min.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/jquery/jquery-3.1.1.min.map b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/jquery/jquery-3.1.1.min.map similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/jquery/jquery-3.1.1.min.map rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/jquery/jquery-3.1.1.min.map diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows-dark.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows-dark.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows-dark.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows-dark.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows-dark.min.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows-dark.min.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows-dark.min.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows-dark.min.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows.min.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows.min.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-arrows.min.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-arrows.min.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-basic.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-basic.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-basic.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-basic.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-basic.min.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-basic.min.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether-theme-basic.min.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether-theme-basic.min.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether.min.css b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether.min.css similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/css/tether.min.css rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/css/tether.min.css diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/js/tether.js b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/js/tether.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/js/tether.js rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/js/tether.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/js/tether.min.js b/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/js/tether.min.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/libs/tether/js/tether.min.js rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/wwwroot/libs/tether/js/tether.min.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI/AbpAspNetCoreMvcUiModule.cs b/src/Volo.Abp.AspNetCore.Mvc.UI/AbpAspNetCoreMvcUiModule.cs index 0b88d83c2d..41edda0d20 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI/AbpAspNetCoreMvcUiModule.cs +++ b/src/Volo.Abp.AspNetCore.Mvc.UI/AbpAspNetCoreMvcUiModule.cs @@ -26,9 +26,9 @@ namespace Volo.Abp.AspNetCore.Mvc options.Sources.Add( new EmbeddedFileSet( - "/abp/", + "/", GetType().GetTypeInfo().Assembly, - "Volo.Abp.AspNetCore.Mvc.wwwroot.abp" + "Volo.Abp.AspNetCore.Mvc.wwwroot" ) ); }); @@ -37,7 +37,7 @@ namespace Volo.Abp.AspNetCore.Mvc { options.ScriptBundles.Add("GlobalScripts", new[] { - "/abp/abp.js?_v" + DateTime.Now.Ticks + "/libs/abp/abp.js?_v" + DateTime.Now.Ticks }); }); } diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj b/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj index f811492531..f7b935777e 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj +++ b/src/Volo.Abp.AspNetCore.Mvc.UI/Volo.Abp.AspNetCore.Mvc.UI.csproj @@ -19,13 +19,13 @@ - - + + - - + + diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/abp/abp.jquery.js b/src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/libs/abp/abp.jquery.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/abp/abp.jquery.js rename to src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/libs/abp/abp.jquery.js diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/abp/abp.js b/src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/libs/abp/abp.js similarity index 100% rename from src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/abp/abp.js rename to src/Volo.Abp.AspNetCore.Mvc.UI/wwwroot/libs/abp/abp.js diff --git a/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs b/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs index 97d3ec3101..02dfc85976 100644 --- a/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs +++ b/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs @@ -8,7 +8,9 @@ using Volo.Abp.Ui.Navigation; namespace Volo.Abp.Identity.Web { - [DependsOn(typeof(AbpAspNetCoreMvcModule), typeof(AbpIdentityApplicationContractsModule))] + [DependsOn(typeof(AbpAspNetCoreMvcModule))] + [DependsOn(typeof(AbpIdentityApplicationContractsModule))] + [DependsOn(typeof(AbpAspNetCoreMvcUiModule))] public class AbpIdentityWebModule : AbpModule { public override void ConfigureServices(IServiceCollection services) @@ -27,8 +29,16 @@ namespace Volo.Abp.Identity.Web "/Areas/", GetType().GetTypeInfo().Assembly, "Volo.Abp.Identity.Web.Areas" - ) - ); + ) + ); + + options.Sources.Add( + new EmbeddedFileSet( + "/", + GetType().GetTypeInfo().Assembly, + "Volo.Abp.Identity.Web.wwwroot" + ) + ); }); } } diff --git a/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml b/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml index 293fdfb468..755c1d0c0e 100644 --- a/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml +++ b/src/Volo.Abp.Identity.Web/Areas/Identity/Views/Users/Index.cshtml @@ -1,5 +1,15 @@ @model IReadOnlyList +@section styles +{ + +} + +@section scripts +{ + +} +

Users