diff options
author | Dan Timoney <dtimoney@att.com> | 2021-04-12 08:17:37 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-04-12 08:17:37 -0400 |
commit | 5cabe36fe85a780a9fb808343d6341f15da13524 (patch) | |
tree | 4893568c164dfaa82226eacc75fec4d622acb398 /admportal/views/mobility/displayVnfNetworkData.ejs | |
parent | 41a3f91544616f0e785e0e9e552e9fd0234cc9b3 (diff) |
Fix ccsdk version and remove admportal2.1.4
Fix ccsdk versions and remove admportal, which is no longer supported
Change-Id: Iaee9bd2b7d5d7345f889357684df18d53db466a1
Issue-ID: SDNC-1507
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: a1d57d8f5131414429f9ef2d8b0468004d253d0a
Diffstat (limited to 'admportal/views/mobility/displayVnfNetworkData.ejs')
-rw-r--r-- | admportal/views/mobility/displayVnfNetworkData.ejs | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/admportal/views/mobility/displayVnfNetworkData.ejs b/admportal/views/mobility/displayVnfNetworkData.ejs deleted file mode 100644 index e2bcd637..00000000 --- a/admportal/views/mobility/displayVnfNetworkData.ejs +++ /dev/null @@ -1,36 +0,0 @@ -<!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="actions" style="padding:0px 25px;"> -<h2>VNF Network Data</h2> -</div> - -<div class="container-fluid"> -<% if ( typeof result != 'undefined' ) { - if (result.code.length > 0) { - if ( result.code == 'success' ) { %> - <pre class='alert alert-success' role='alert'><%=JSON.stringify(result.msg,null,4) %></pre> - <% } else { %> - <pre class='alert alert-danger' role='danger'><%=result.msg %></pre> - <% } %> - <% } %> -<% } %> -</div> - - -<footer> - <% include ../partials/footer %> -</footer> - -</body> -</html> - |