Merge "Move this variable to comply with Java Code Conventions"
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / view-models / deleteResumeDialog.htm
1 <!--
2   ============LICENSE_START=======================================================
3   VID
4   ================================================================================
5   Copyright (C) 2017 - 2019 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
21 <div ng-controller="deleteResumeDialogController">
22
23         <div ng-show="isDialogVisible">
24                 <div class="titleLine">
25                         <img src="app/vid/images/spinner.gif"
26                                 ngx-visible="{{isSpinnerVisible}}"></img>
27                         <h3>{{dialogMethod}} {{componentName}}</h3>
28                 </div>
29
30                 <div class="error" ng-show="isErrorVisible">
31                         <img src="app/vid/images/error.png"></img>{{error}}
32                 </div>
33
34       <parameter-block control="summaryControl"></parameter-block>
35
36                 <!-- tell VID if it's an E2E VoLTE service-->
37                 <div style="margin-left: 15px" ng-show="isServiceInstance">
38                         <input type="checkbox" ng-model="isE2EService" />
39                         This is an E2E (VoLTE) service instance
40                 </div>
41
42       <div ngx-visible="{{isDataVisible}}">
43                 
44         <h4>
45                                 User Provided Data (<img class="requiredIndicator"
46                                         src="app/vid/images/asterisk.png" height='10' width='10'></img> indicates required field)
47                         </h4>
48                         <parameter-block control="userProvidedControl"
49                                 callback="userParameterChanged(id);" editable></parameter-block>
50
51                         <div class="prompt">
52                                 <p>
53                                         Enter Data and <span>Confirm</span> to<br />{{dialogMethod}} <span>{{componentName}}</span>
54                                 </p>
55                                 <p>
56                                         <span>Cancel</span> to Return to Previous Page.<br />Data entered
57                                         will be lost
58                                 </p>
59                         </div>
60         </div>
61
62                 <div class="buttonRow">
63                         <!-- <button type="button" ng-click="confirm();" att-button
64                                 btn-type="primary" size="small" class="confirm">Confirm</button>
65                         <button type="button" ng-click="cancel();" att-button
66                                 btn-type="primary" size="small">Cancel</button> --->
67                         <button data-tests-id="confirmResumeDeleteButton" ngx-enabled="{{isConfirmEnabled}}" att-button size="small"
68                                 ng-click="confirm();">Confirm</button>
69                         <button type="button" ng-click="cancel();" att-button
70                                 btn-type="primary" size="small">Cancel</button>
71                 </div>
72         </div>
73
74         <div ng-include="'app/vid/scripts/view-models/msoCommit.htm'"></div>
75
76 </div>