]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-group/info-group.component.html
722824a8fe8cbbb5088bf6846c54ca50b4c18a8e
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / dashboard / info-group / info-group.component.html
1 <div class="row">
2 <div class="info-group-title"
3 [ngbPopover]="popInfoTemplate"
4 #popInfo="ngbPopover"
5 triggers="">
6 <span>{{ groupTitle }}</span>
7 <button type="button"
8 class="popover-icon btn btn-link p-0"
9 (click)="popInfo.toggle()">
10 <i [ngClass]="[icons.infoCircle, icons.large]"></i>
11 </button>
12 </div>
13 </div>
14
15 <div class="row">
16 <ng-content></ng-content>
17 </div>
18
19 <ng-template #popInfoTemplate>
20 <div class="text-center"
21 i18n>For an overview of {{ groupTitle|lowercase }} widgets click
22 <cd-doc section="dashboard-landing-page-{{ groupTitle|lowercase }}"
23 docText="here"
24 i18n-docText></cd-doc>
25 </div>
26 </ng-template>