diff options
Diffstat (limited to 'admportal/views/ucpe/apiLogins.ejs')
-rw-r--r-- | admportal/views/ucpe/apiLogins.ejs | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/admportal/views/ucpe/apiLogins.ejs b/admportal/views/ucpe/apiLogins.ejs deleted file mode 100644 index ddb50c8b..00000000 --- a/admportal/views/ucpe/apiLogins.ejs +++ /dev/null @@ -1,93 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta charset="UTF-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <% include ../partials/head %> - <% include ../partials/header %> - <script type="text/javascript" src="/javascripts/admportal.js" async></script> - <title>SDN-C AdminPortal</title> -<script class="init"> - $(document).ready(function() { - $('#api_logins').DataTable( { - "order": [[ 0, "asc" ]] - } ); -} ); -</script> - -</head> - -<body> - -<div class="well well-sm"> -<h3>uCPE API Logins</h3> -</div> - -<% if ( typeof result != 'undefined' ) { - if (result.code.length > 0) { - if ( result.code == 'success' ) { %> - <div class='alert alert-success' role='alert'> - <% - for ( x in result.msg ){ %> - <div><%= result.msg[x] %></div> - <% } %> - </div> - <% } else { %> - <div class='alert alert-danger' role='danger'> - <% - for ( x in result.msg ){ %> - <div><%= result.msg[x] %></div> - <% } %> - </div> - <% } %> - <% } %> -<% } %> - -<% if( typeof privilege != 'undefined'){ - var priv = privilege.privilege; -} else { - var priv = 'A'; -} %> - - -<div class="container-fluid"> - -<!-- - <% if (priv == 'A'){ %> - <div class="actions" style="padding:15px 0px;"> - <button class="btn btn-primary" data-toggle="modal" data-target="#add_vnf_profile"> - Add VNF Profile - </button> - </div> - <% } %> ---> - - <table id="api_logins" class="table table-hover table-condensed"> - <thead> - <tr> - <th>*CUSTOMER_NAME</th> - <th>PHS_NCS_USERNAME</th> - <th>NCS_PUBLIC_SSH_KEY</th> - </tr> - </thead> - <tbody> - <% rows.forEach( function(row) { %> - <tr> - <td><%= row.customer_name %></td> - <td><%= row.phs_ncs_username %></td> - <td><%= row.ncs_public_ssh_key %></td> - </tr> - <% }); %> - </tbody> - </table> - -</div> - -<footer> - <% include ../partials/footer %> -</footer> - - -</body> -</html> - |