[POLICY-122] Policy GUI Fixes
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / Windows / Dictionary / EcompNameDictionary.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="add_ecompName_popup.html">
21     <div class="modal" tabindex="-1">
22                  <div class="modal-dialog modal-lg">
23                         <div class="modal-content">
24         <div class="modal-header">
25             <h2  style="color : #157bb2">{{label}}</h2>
26         </div>
27                 <form name="formdata" ng-submit="saveEcompName(editEcompName);" novalidate>
28         <div class="modal-body">
29                         <div class="form-group row">
30             <div class="form-group" style="margin-right:2%; margin-left:2%" ng-class="{ 'has-error' : formdata.ecompName.$invalid && !formdata.ecompName.$pristine }">
31                 <label>Ecomp Name:<sup><b>*</b></sup></label><br>
32                 <input type="text" class="form-control" ng-model="editEcompName.ecompName" name= "ecompName"  required/>
33                                 <p ng-show="formdata.ecompName.$invalid && !formdata.ecompName.$pristine" class="help-block">Ecomp Name is required.</p>
34             </div>
35                         </div>
36                         <div class="form-group row">
37             <div class="form-group" style="margin-right:2%; margin-left:2%">
38                 <label>Description:</label><br>
39                 <input class="form-control" type="text"  ng-model="editEcompName.description"/>
40             </div>
41                         </div>
42         </div>
43         <div class="modal-footer">
44             <button class="btn btn-success" type="submit" ng-disabled="formdata.$invalid">Save</button>
45             <button class="btn btn-default" ng-click="$dismiss('cancel')">Close</button>
46                 </div>
47         </form>
48                 </div>
49                 </div>
50     </div>
51 </script>