]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/about/about.component.html
fdf4d95cfdd1e62cc69ddd5d19946cc68c49da24
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / navigation / about / about.component.html
1 <div class="about-container">
2 <div class="modal-header">
3 <button type="button"
4 class="close float-right"
5 aria-label="Close"
6 (click)="activeModal.close()">
7 <span aria-hidden="true">&times;</span>
8 </button>
9 </div>
10 <div class="modal-body">
11 <img src="assets/Ceph_Ceph_Logo_with_text_red_white.svg"
12 class="ceph-logo"
13 alt="{{ projectConstants.organization }}">
14 <h3>
15 <strong>{{ projectConstants.projectName }}</strong>
16 </h3>
17 <div class="product-versions">
18 <strong>Version</strong>
19 <br>
20 {{ versionNumber }}
21 {{ versionHash }}
22 <br>
23 {{ versionName }}
24 </div>
25 <br>
26 <dl>
27 <dt>Ceph Manager</dt>
28 <dd>{{ hostAddr }}</dd>
29 <dt>User</dt>
30 <dd>{{ modalVariables.user }}</dd>
31 <dt>User Role</dt>
32 <dd>{{ modalVariables.role }}</dd>
33 <dt>Browser</dt>
34 <dd>{{ modalVariables.browserName }}</dd>
35 <dt>Browser Version</dt>
36 <dd>{{ modalVariables.browserVersion }}</dd>
37 <dt>Browser OS</dt>
38 <dd>{{ modalVariables.browserOS }}</dd>
39 </dl>
40 </div>
41 <div class="modal-footer">
42 <div class="text-left">
43 {{ projectConstants.copyright }}
44 {{ projectConstants.license }}
45 </div>
46 </div>
47 </div>