summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-group/info-group.component.html
blob: 722824a8fe8cbbb5088bf6846c54ca50b4c18a8e (plain)
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
<div class="row">
  <div class="info-group-title"
       [ngbPopover]="popInfoTemplate"
       #popInfo="ngbPopover"
       triggers="">
    <span>{{ groupTitle }}</span>
    <button type="button"
            class="popover-icon btn btn-link p-0"
            (click)="popInfo.toggle()">
      <i [ngClass]="[icons.infoCircle, icons.large]"></i>
    </button>
  </div>
</div>

<div class="row">
  <ng-content></ng-content>
</div>

<ng-template #popInfoTemplate>
  <div class="text-center"
       i18n>For an overview of {{ groupTitle|lowercase }} widgets click
    <cd-doc section="dashboard-landing-page-{{ groupTitle|lowercase }}"
            docText="here"
            i18n-docText></cd-doc>
  </div>
</ng-template>