-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIndex.cshtml
More file actions
46 lines (40 loc) · 1.55 KB
/
Index.cshtml
File metadata and controls
46 lines (40 loc) · 1.55 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
@page
@using Microsoft.AspNetCore.Authorization;
@using Microsoft.AspNetCore.Mvc.Localization;
@using Unity.TenantManagement.Web.Navigation;
@using Volo.Abp.AspNetCore.Mvc.UI.Layout;
@using Volo.Abp.TenantManagement.Localization;
@using Unity.TenantManagement.Web.Pages.TenantManagement.Tenants;
@model IndexModel
@inject IHtmlLocalizer<AbpTenantManagementResource> L
@inject IAuthorizationService Authorization
@inject IPageLayout PageLayout
@{
PageLayout.Content.BreadCrumb.Add(L["Menu:Endpoints"].Value);
PageLayout.Content.MenuItemName = TenantManagementMenuNames.Endpoints;
}
@section styles {
<abp-style src="/Pages/EndpointManagement/Endpoints/Index.css" />
}
@section scripts {
<abp-script src="/Pages/EndpointManagement/Endpoints/Index.js" />
}
<div class="container-fluid px-0">
<div class="action-bar p-2 filter-search-action-bar">
<div class="unity-page-titlebar">
<h4>Endpoint Management</h4>
</div>
<div class="filter-search-action-bar_search-wrapper">
<input type="search" id="search-endpoints" 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-card id="EndpointManagementWrapper">
<abp-card-body>
<abp-table id="EndpointsTable" striped-rows="false" class="nowrap"></abp-table>
</abp-card-body>
</abp-card>
</div>
</div>