]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/dashboard-help/dashboard-help.component.html
import quincy beta 17.1.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / navigation / dashboard-help / dashboard-help.component.html
CommitLineData
f67539c2
TL
1<div ngbDropdown
2 placement="bottom-right">
3 <a ngbDropdownToggle
11fdf7f2
TL
4 i18n-title
5 title="Help">
9f95a23c 6 <i [ngClass]="[icons.questionCircle]"></i>
11fdf7f2 7 <span i18n
9f95a23c 8 class="d-md-none">Help</span>
11fdf7f2 9 </a>
f67539c2
TL
10 <div ngbDropdownMenu>
11 <a ngbDropdownItem
12 [ngClass]="{'disabled': !docsUrl}"
13 class="text-capitalize"
14 href="{{ docsUrl }}"
15 target="_blank"
16 i18n>documentation</a>
b3b6e05e 17 <a ngbDropdownItem
20effc67 18 routerLink="/api-docs"
b3b6e05e
TL
19 target="_blank"
20 i18n>API</a>
f67539c2
TL
21 <button ngbDropdownItem
22 (click)="openAboutModal()"
23 i18n>About</button>
20effc67
TL
24 <button ngbDropdownItem
25 (click)="openFeedbackModal()"
26 i18n>Report an issue...</button>
f67539c2 27 </div>
11fdf7f2 28</div>