diff options
author | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-02-15 10:37:53 -0500 |
---|---|---|
committer | Timoney, Daniel (dt5972) <dtimoney@att.com> | 2017-02-15 10:40:37 -0500 |
commit | 324ee36fe31763e507b422ab0a88e4230045e205 (patch) | |
tree | d0b04520f6657601c918ce63fd27575977624187 /admportal/views/ucpe/mappedServicePort.ejs | |
parent | f0c97e8db427481e28c0a16b789bc73801b35e47 (diff) |
Initial commit for OpenECOMP SDN-C OA&M
Change-Id: I7ab579fd0d206bf356f36d52dcdf4f71f1fa2680
Signed-off-by: Timoney, Daniel (dt5972) <dtimoney@att.com>
Former-commit-id: 2a9f0edd09581f907e62ec4689b5ac94dd5382ba
Diffstat (limited to 'admportal/views/ucpe/mappedServicePort.ejs')
-rw-r--r-- | admportal/views/ucpe/mappedServicePort.ejs | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/admportal/views/ucpe/mappedServicePort.ejs b/admportal/views/ucpe/mappedServicePort.ejs new file mode 100644 index 00000000..1c55eb5c --- /dev/null +++ b/admportal/views/ucpe/mappedServicePort.ejs @@ -0,0 +1,98 @@ +<!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() { + $('#mapped_service_port').DataTable( { + "order": [[ 0, "asc" ]] + } ); +} ); +</script> + +</head> +<body> + +<div class="well well-sm"> +<h3>uCPE Mapped Service Port</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="mapped_service_port" class="table table-hover table-condensed"> + <thead> + <tr> + <th>*DEVICE_VENDOR_NAME</th> + <th>*DEVICE_MODEL</th> + <th>*SERVICE_PORT_NAME</th> + <th>*VNF_VENDOR_NAME</th> + <th>*VNF_MODEL</th> + <th>*PORT_NAME</th> + </tr> + </thead> + <tbody> + <% rows.forEach( function(row) { %> + <tr> + <td><%= row.device_vendor_name %></td> + <td><%= row.device_model %></td> + <td><%= row.service_port_name %></td> + <td><%= row.vnf_vendor_name %></td> + <td><%= row.vnf_model %></td> + <td><%= row.port_name %></td> + </tr> + <% }); %> + </tbody> + </table> + +</div> + +<footer> + <% include ../partials/footer %> +</footer> + + +</body> +</html> + |