<%- include('partials/navbar.ejs') %>
Node Details
Online Status:
Online
Join Server
Leave Server
Check-in with Node
Update Node
Node ID (this is the assigned Node ID and cannot be changed)
Node Name:
Node IP Address (that the server can contact):
Node Port (with the API):
Node Location (physical location):
Nearby Systems
System Name
Frequencies
Protocol
<% for(const system in node.nearbySystems){ %>
<%= system %>
<% if(node.nearbySystems[system].frequencies.length> 1) { %>
<% for(const frequency of node.nearbySystems[system].frequencies) { %>
<%=frequency%> MHz
<% } %>
<% } else { const frequency=node.nearbySystems[system].frequencies[0] %> <%=frequency%> MHz <% } %>
<%= node.nearbySystems[system].mode %>
">
<% // Update system modal %> <%- include("partials/modifySystemModal.ejs", {'system': system, 'frequencies' : node.nearbySystems[system].frequencies, 'mode' : node.nearbySystems[system].mode}) %> <% } %>
Save changes
Add New System
<% // new System Modal %> <%- include("partials/modifySystemModal.ejs", {'system': "New System" , 'frequencies' : [], 'mode' : '' }) %> <% // Join Server Modal %> <%- include("partials/joinModal.ejs", {'node': node}) %>