Revert "Adapt tunnels web view to new bmx6 syntax and options"
[feed/routing.git] / luci-app-bmx6 / files / usr / lib / lua / luci / view / bmx6 / tunnels_j.htm
index d4cc38b680620360131534c7bb4398721a2017a7..1b7ce42365ca87bb665446dc9e49503bd754878e 100644 (file)
@@ -71,8 +71,7 @@
                        <th class="cbi-section-table-cell"><%:IP metric%></th>
                        <th class="cbi-section-table-cell"><%:Tun metric%></th>
                        <th class="cbi-section-table-cell"><%:Bonus%></th>
-                       <th class="cbi-section-table-cell"><%:Src%></th>
-                       <th class="cbi-section-table-cell"><%:Search id%></th>
+                       <th class="cbi-section-table-cell"><%:search id%></th>
                </tr>
                <tr class="cbi-section-table-row">
                        <td colspan="10"><em><br /><%:Collecting data...%></em></td>
                  var res = Array();
                   for ( var k in st.tunnels ){
                         var tunnel = st.tunnels[k];
-                        var nodename = tunnel.remoteName.replace(/\..+$/,'');
+                        var nodename = tunnel.remoteId.replace(/\..+$/,'');
                        var advnet = tunnel.advNet;
                        var status = '<img src="'+tunicon_dis+'"/>';
                        
                        if ( tunnel.tunName != "---" ) status = '<img src="'+tunicon+'"/>';
                        if ( advnet == "0.0.0.0/0" ) advnet = "<b>Internet</b>";
 
-                       res.push([status, tunnel.name, nodename, advnet, tunnel.advBw, tunnel.net, tunnel.advType,
-                               tunnel.pathMtc, tunnel.ipMtc, tunnel.tunMtc, tunnel.bonus, tunnel.srcIngress, tunnel.id]);
+                       res.push([status, tunnel.name, nodename, advnet, tunnel.advBw, tunnel.searchNet, tunnel.advType,
+                               tunnel.pathMtc, tunnel.ipMtc, tunnel.tunMtc, tunnel.bonus, tunnel.searchId]);
                  }
                  return res;
                });