aboutsummaryrefslogtreecommitdiffstats
path: root/admportal/views/ucpe/vnfNmInterfaces.ejs
blob: 3430f6b09fa824031cf232cbcf55e5f6b177dad7 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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() {
    $('#vnf_nm_interfaces').DataTable( {
        "order": [[ 0, "asc" ]]
    } );
} );
</script>

</head>
<body>

<div class="well well-sm">
<h3>uCPE VNF NM Interfaces</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="vnf_nm_interfaces" class="table table-hover table-condensed">
    <thead>
        <tr>
		  <th>*DEVICE_VENDOR_NAME</th>
		  <th>*DEVICE_MODEL</th>
		  <th>*VNF_VENDOR_NAME</th>
		  <th>*VNF_MODEL</th>
		  <th>NM_LAN_INTERFACE</th>
		  <th>NM_LOOPBACK_INTERFACE</th>
        </tr>
    </thead>
	<tbody>
    <% rows.forEach( function(row) { %>
        <tr>
            <td><%= row.device_vendor_name %></td>
            <td><%= row.device_model %></td>
            <td><%= row.vnf_vendor_name %></td>
            <td><%= row.vnf_model %></td>
            <td><%= row.nm_lan_interface %></td>
            <td><%= row.nm_loopback_interface %></td>
        </tr>
    <% }); %>
    </tbody>
    </table>

</div>

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


</body>
</html>