201e1ba52aadea1f45b331606a7f7539742a4129
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / Windows / Dictionary / ModelAttributeDictionary.html
1 <!--/*-
2  * ============LICENSE_START=======================================================
3  * ONAP 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_modelAttribute_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 class="font-showcase-font-name" style="color : #157bb2">{{label}}</h2>
26         </div>
27         <div class="divider-container"><hr> </div>
28                 <form name="formdata" ng-submit="saveModelAttribute(editModelAttribute);" novalidate>
29         <div class="modal-body">
30                         <div class="form-group row">
31                         <div class="form-group col-sm-6" ng-class="{ 'has-error' : formdata.modelName.$invalid && !formdata.modelName.$pristine }">
32                 <label>Micro Service:<sup><b>*</b></sup></label><br>
33                 <select class="form-control" name= "modelName"  required  ng-model="editModelAttribute.modelName"  ng-options="option for option in microServiceModelsDictionaryDatas track by option" ></select>
34                                 <p ng-show="formdata.modelName.$invalid && !formdata.modelName.$pristine" class="help-block">Micro Service is required.</p>
35                  </div>
36                         </div>
37                         <div class="form-group row">
38            <div class="form-group col-sm-6" ng-class="{ 'has-error' : formdata.name.$invalid && !formdata.name.$pristine }" >
39                 <label>Enter Dictionary Name:<sup><b>*</b></sup></label><br>
40                 <input type="text"  ng-model="editModelAttribute.name" class="form-control" name= "name"  required/>
41                                 <p ng-show="formdata.name.$invalid && !formdata.name.$pristine" class="help-block">Dictionary Name is required.</p>
42             </div>
43             </div>
44                         <div class="form-group row">
45             <div class="form-group col-sm-6" ng-class="{ 'has-error' : formdata.value.$invalid && !formdata.value.$pristine }">
46                 <label>Enter Value:<sup><b>*</b></sup></label><br>
47                 <input type="text" ng-model="editModelAttribute.value" class="form-control" name= "value"  required"/>
48                                 <p ng-show="formdata.value.$invalid && !formdata.value.$pristine" class="help-block">Value is required.</p>
49             </div>
50                         </div>
51         </div>
52         <div class="modal-footer">
53             <button class="btn btn-success" type="submit" ng-disabled="formdata.$invalid">Save</button>
54             <button class="btn btn-default"  type="button" ng-click="close()">Close</button>
55                 </div>
56                 </form>
57     </div>
58                         </div>
59 </div>
60 </script>