Fixed the Policy API issues and Bugfixes
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / Windows / PDPTabWindows / AddorEditPDPtoGroup.html
1 <!--/*-
2  * ============LICENSE_START=======================================================
3  * ECOMP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */-->
20 <script type="text/ng-template" id="create_newPDP_InGroup.html">
21 <div class="modal">
22         <div class="modal-dialog modal-lg">
23         <div class="modal-content">
24         <div class="modal-header">
25             <h2 class="font-showcase-font-name" style="color : #157bb2">{{label}}</h2>
26         </div>
27         <div class="modal-body">
28                         <div class="form-group row">
29             <div class="form-group col-sm-6">
30                 <label>PDP URL:<sup><b>*</b></sup> </label><br>
31                 <input type="text"  class="form-control" ng-model="editPDPInGroup.id" class="form-control" />
32             </div>
33                         </div>
34                         <div class="form-group row">
35             <div class="form-group col-sm-6">
36                 <label>JMX Port:<sup><b>*</b></sup></label><br>
37                 <input type="text"  class="form-control" ng-model="editPDPInGroup.jmxPort"
38                        class="form-control"  />
39             </div>
40                         </div>
41                         <div class="form-group row">
42             <div class="form-group col-sm-6">
43                 <label>PDP Name:<sup><b>*</b></sup></label><br>
44                 <input type="text"  class="form-control" ng-model="editPDPInGroup.name"
45                       class="form-control"  />
46             </div>
47                         </div>
48                         <div class="form-group row">
49             <div class="form-group col-sm-6">
50                 <label>PDP Description:</label><br>
51                 <input type="text"  class="form-control" ng-model="editPDPInGroup.description"
52                       class="form-control"/>
53             </div>
54                         </div>
55         </div>
56         <div class="modal-footer">
57             <button class="btn btn-success"  herf="javascript:void(0)" ng-click="savePDPInGroup(editPDPInGroup);">Save</button>
58             <button class="btn btn-default" herf="javascript:void(0)" ng-click="close()">Close</button>
59                 </div>
60     </div>
61         </div>
62 </div>
63 </script>