summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/about/about.component.html
blob: fdf4d95cfdd1e62cc69ddd5d19946cc68c49da24 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<div class="about-container">
  <div class="modal-header">
    <button type="button"
            class="close float-right"
            aria-label="Close"
            (click)="activeModal.close()">
      <span aria-hidden="true">&times;</span>
    </button>
  </div>
  <div class="modal-body">
    <img src="assets/Ceph_Ceph_Logo_with_text_red_white.svg"
         class="ceph-logo"
         alt="{{ projectConstants.organization }}">
    <h3>
      <strong>{{ projectConstants.projectName }}</strong>
    </h3>
    <div class="product-versions">
      <strong>Version</strong>
      <br>
      {{ versionNumber }}
      {{ versionHash }}
      <br>
      {{ versionName }}
    </div>
    <br>
    <dl>
      <dt>Ceph Manager</dt>
      <dd>{{ hostAddr }}</dd>
      <dt>User</dt>
      <dd>{{ modalVariables.user }}</dd>
      <dt>User Role</dt>
      <dd>{{ modalVariables.role }}</dd>
      <dt>Browser</dt>
      <dd>{{ modalVariables.browserName }}</dd>
      <dt>Browser Version</dt>
      <dd>{{ modalVariables.browserVersion }}</dd>
      <dt>Browser OS</dt>
      <dd>{{ modalVariables.browserOS }}</dd>
    </dl>
  </div>
  <div class="modal-footer">
    <div class="text-left">
      {{ projectConstants.copyright }}
      {{ projectConstants.license }}
    </div>
  </div>
</div>