]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/error-panel/error-panel.component.html
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / error-panel / error-panel.component.html
1 <alert type="danger">
2 <table>
3 <tr>
4 <td rowspan="2"
5 class="error-panel-alert-icon">
6 <i class="fa fa-3x fa-times-circle alert-danger"
7 aria-hidden="true"></i>
8 </td>
9 <td class="error-panel-alert-title">
10 {{ title }}
11 </td>
12 </tr>
13 <tr>
14 <td class="error-panel-alert-text">
15 <ng-content></ng-content>
16 </td>
17 </tr>
18 </table>
19 </alert>
20
21 <div class="button-group text-right"
22 *ngIf="backAction.observers.length > 0">
23 <button class="btn btn-sm btn-default tc_backButton"
24 type="button"
25 (click)="backAction.emit()"
26 autofocus
27 i18n>Back</button>
28 </div>