Initial commit for OpenECOMP SDN-C OA&M
[sdnc/oam.git] / admportal / views / mobility / displayVnfData.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
13 <div class="actions" style="padding:0px 25px;">
14 <h2>VNF Data</h2>
15 </div>
16
17 <div class="container-fluid">
18 <% if ( typeof result != 'undefined' ) {
19         if (result.code.length > 0) {
20             if ( result.code == 'success' ) { %>
21                 <pre class='alert alert-success' role='alert'><%=JSON.stringify(result.msg,null,4) %></pre>
22             <% } else { %>
23                 <pre class='alert alert-danger' role='danger'><%=result.msg %></pre>
24             <% } %>
25         <% } %>
26 <% } %>
27 </div>
28
29
30 <footer>
31          <% include ../partials/footer %>
32 </footer>
33     
34 </body>
35 </html>
36