a858b0fe396e7f38b7dc981b072662da2260ea2d
[sdc/sdc-workflow-designer.git] /
1 <!--
2 /**
3  * Copyright (c) 2017 ZTE Corporation.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * and the Apache License 2.0 which both accompany this distribution,
7  * and are available at http://www.eclipse.org/legal/epl-v10.html
8  * and http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Contributors:
11  *     ZTE - initial API and implementation and/or initial documentation
12  */
13 -->
14 <div class="modal fade" bsModal #restConfigModal="bs-modal" [config]="{backdrop: 'static'}"
15      tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
16     <div class="modal-dialog modal-lg">
17         <div class="modal-content">
18             <div class="modal-header">
19                 <h4 class="modal-title pull-left">Rest Config Setting</h4>
20                 <button type="button" class="close pull-right" aria-label="Close" (click)="restConfigModal.hide()">
21                     <span aria-hidden="true">&times;</span>
22                 </button>
23             </div>
24             <div class="modal-body">
25                 <div class="row">
26                     <div class="col-sm-4">
27                         <wfm-rest-config-list (configSelected)="configSelected($event)"></wfm-rest-config-list>
28                     </div>
29                     <div class="col-sm-8">
30                         <wfm-rest-config-detail [restConfig]="currentRestConfig"></wfm-rest-config-detail>
31                     </div>
32                 </div>
33             </div>
34             <div class="modal-footer">
35                 <button type="button" class="btn over-grey" (click)="restConfigModal.hide()">close</button>
36             </div>
37         </div>
38     </div>
39 </div>