-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIndex.cshtml
More file actions
51 lines (45 loc) · 1.79 KB
/
Index.cshtml
File metadata and controls
51 lines (45 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@page
@using Microsoft.AspNetCore.Authorization
@using Microsoft.AspNetCore.Mvc.Localization
@using Unity.GrantManager.Localization
@using Unity.Identity.Web.Navigation
@using Unity.Identity.Web.Pages.Identity.Users
@using Volo.Abp.AspNetCore.Mvc.UI.Layout
@model IndexModel
@inject IHtmlLocalizer<GrantManagerResource> L
@inject IAuthorizationService Authorization
@inject IPageLayout PageLayout
@{
PageLayout.Content.Title = L["Users"].Value;
PageLayout.Content.BreadCrumb.Add(L["Menu:IdentityManagement"].Value);
PageLayout.Content.MenuItemName = UnityIdentityMenuNames.Users;
ViewBag.PageTitle = L["Users"].Value;
}
@section styles {
<abp-style-bundle name="@typeof(IndexModel).FullName">
<abp-style src="/Pages/AbpPermissionManagement/permission-management-modal.css" />
<abp-style src="/Pages/identity/users/index.css"/>
</abp-style-bundle>
}
@section scripts {
<abp-script-bundle name="@typeof(IndexModel).FullName">
<abp-script src="/client-proxies/identity-proxy.js" />
<abp-script src="/Pages/AbpPermissionManagement/permission-management-modal.js" />
<abp-script src="/Pages/identity/users/index.js" />
</abp-script-bundle>
}
<div class="container-fluid px-0">
<div class="action-bar p-2 filter-search-action-bar">
<div class="unity-page-titlebar">
<h4>@L["Users"]</h4>
</div>
<div class="filter-search-action-bar_search-wrapper">
<input type="search" id="search-users" placeholder="Search" class="tbl-search">
</div>
<div class="btn-group" id="app_custom_buttons"></div>
<div id="dynamicButtonContainerId" class="dynamic-buttons-div button-gap-1"></div>
</div>
<div class="p-3 pt-0">
<abp-table id="UsersTable"></abp-table>
</div>
</div>