cd7d6668be60ac6b7568bd13f5ab0f4bbf7bab3e
[clamp.git] / src / main / resources / META-INF / resources / designer / modeler / dist / index.html
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP CLAMP
4   ================================================================================
5   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6                               reserved.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License"); 
9   you may not use this file except in compliance with the License. 
10   You may obtain a copy of the License at
11   
12   http://www.apache.org/licenses/LICENSE-2.0
13   
14   Unless required by applicable law or agreed to in writing, software 
15   distributed under the License is distributed on an "AS IS" BASIS, 
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
17   See the License for the specific language governing permissions and 
18   limitations under the License.
19   ============LICENSE_END============================================
20   ===================================================================
21   
22   -->
23 <style>
24 .ERROR{color: red;}
25 .WARNING{color: orange;}
26 .INFO{color: green;}
27 </style>
28
29 <html>
30 <head>
31 <title>Svg model display</title>
32 <link rel="stylesheet" href="css/diagram-js.css" />
33 <link rel="stylesheet" href="css/app.css" />
34 <script type="text/javascript" src="./scripts/app.js"></script>
35 </head>
36
37 <body>
38
39         <div class="content" id="js-drop-zone" id="div_content"
40                 ng-app="clds-app" ng-controller="MenuCtrl">
41                 <div class="message error">
42                         <div class="note">
43                                 <p>Ooops, we could not display the Closed Loop Model.</p>
44                                 <div class="details">
45                                         <span>cause of the problem</span>
46                                         <pre></pre>
47                                 </div>
48                         </div>
49                 </div>
50
51                 <div class="canvas" id="js-canvas" style="margin-top: 100px; margin-left: 20px;">
52                         <div id="loop-content">
53                         </div>
54                 
55                         <label for="loop-log-div" class="col-sm-4 control-label">Loop Logs</label>
56                         <div id="loop-log-div" style="border: 2px solid gray;height: 20vh; margin-right: 40px;">
57                                 <div id="loop-log-table-scroll" style="width: 100%;height: 87%;overflow: auto;margin-top: 20px;">
58                                         <table id="loop-log-table" style="width: 100%">
59                                                 <thead>
60                                                         <tr>
61                                                                 <th><span align="left" class="text">Date</span></th>
62                                                                 <th><span align="left" class="text">Type</span></th>
63                                                                 <th><span align="left" class="text">Component</span></th>
64                                                                 <th><span align="right" class="text">Log</span></th>
65                                                         </tr>
66                                                 </thead>
67                                                 <tbody>
68                                                         <tr ng-repeat="log in loop_logs" ng-class="{reverse: reverse}">
69                                                                 <td width="10%">{{log.logInstant}}</td>
70                                                                 <td width="10%" ng-class="log.logType">{{log.logType}}</td>
71                                                                 <td width="10%">{{log.logComponent}}</td>
72                                                                 <td width="70%">{{log.message}}</td>
73                                                         </tr>
74                                                 </tbody>
75                                         </table>
76                                 </div>
77                         </div>
78                 </div>
79
80
81         </div>
82 </body>
83
84 </html>