]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
707e24e84d5c84eba464dec2ee0a73c21d02cb73
[ceph.git] /
1 <cd-modal (hide)="cancel()">
2   <ng-container class="modal-title">{{ titleText }}</ng-container>
3   <ng-container class="modal-content">
4     <form name="confirmationForm"
5           class="form-horizontal"
6           #formDir="ngForm"
7           [formGroup]="confirmationForm"
8           novalidate>
9       <div class="modal-body">
10         <ng-container *ngTemplateOutlet="bodyTpl; context: bodyContext"></ng-container>
11       </div>
12       <div class="modal-footer">
13         <div class="button-group text-right">
14           <cd-submit-button [form]="confirmationForm"
15                             (submitAction)="onSubmit(confirmationForm.value)">
16             {{ buttonText }}
17           </cd-submit-button>
18           <cd-back-button [back]="boundCancel"
19                           name="Cancel"
20                           i18n-name>
21           </cd-back-button>
22         </div>
23       </div>
24     </form>
25   </ng-container>
26 </cd-modal>