aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/sla/printasgv.ejs
blob: 66dca13112546fde98c9463d3461f2d63765bd0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
  <title>SDN-C AdminPortal</title>
  <meta charset="utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <% include ../partials/head %>
  <% include ../partials/header %>
</head>
<body>



<div class="well well-sm">
<h3>Service Logic Graph</h3>
</div>

<div class="container-fluid">
<% if ( typeof result != 'undefined' ) {
        if (result.code.length > 0) {
            if ( result.code == 'success' ) { %>
<pre>
Module  : <%= result.module %>
RPC     : <%= result.rpc %>
Mode    : <%= result.mode %>
Version : <%= result.version %>
<br>
<img src='data:image/png;base64,<%= result.msg %>' >
</pre>
            <% } else { %>
                <pre class='alert alert-danger' role='danger'><%=result.msg %></pre>
            <% } %>
        <% } %>
<% } %>


<footer>
	 <% include ../partials/footer %>
</footer>
    
</body>
</html>