NonRT-RIC A1 Northbound API
[nonrtric.git] / sdnc-a1-controller / oam / admportal / views / sla / printasxml.ejs
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4   <title>SDN-C AdminPortal</title>
5   <meta charset="UTF-8">
6   <meta http-equiv="X-UA-Compatible" content="IE=edge">
7   <% include ../partials/head %>
8   <% include ../partials/header %>
9 </head>
10 <body>
11
12 <div class="well well-sm">
13 <h3>Service Logic Code</h3>
14 </div>
15
16 <div class="container-fluid">
17 <% if ( typeof result != 'undefined' ) {
18         if (result.code.length > 0) {
19             if ( result.code == 'success' ) { %>
20                 <pre class='alert alert-success' role='alert'><%=result.msg %></pre>
21             <% } else { %>
22                 <pre class='alert alert-danger' role='danger'><%=result.msg %></pre>
23             <% } %>
24         <% } %>
25 <% } %>
26 </div>
27
28
29 <footer>
30          <% include ../partials/footer %>
31 </footer>
32     
33 </body>
34 </html>
35