🔥 Dallas Node (TX1)

<% txServers.forEach(server => { const isOnline = server.log.is_online; const hasError = !!server.log.last_error; const discordComplete = server.discord?.complete; let borderClass = 'border-gray-200 dark:border-gray-700'; if (isOnline && !hasError) borderClass = 'border-green-500 shadow-[0_0_10px_rgba(34,197,94,0.2)]'; if (hasError) borderClass = 'border-red-500 shadow-[0_0_10px_rgba(239,68,68,0.2)]'; %>

<%= server.name %>

<%= server.identifier %>

<%= isOnline ? 'Online' : 'Offline' %>
Whitelist <%= server.whitelistEnabled ? '✅ Enabled' : '🔓 Disabled' %>
Last Sync <%= server.log.last_successful_sync ? new Date(server.log.last_successful_sync).toLocaleString() : 'Never' %>
Discord Channels <% if (discordComplete) { %> ✅ All 4 channels <% } else if (server.discord?.missing?.length > 0) { %>
Missing: <%= server.discord.missing.join(', ') %>
<% } else { %> Unable to check <% } %>
<% if (hasError) { %>
Error: <%= server.log.last_error %>
<% } %>
<% }) %> <% if(txServers.length === 0) { %>

No servers found.

<% } %>

❄️ Charlotte Node (NC1)

<% ncServers.forEach(server => { const isOnline = server.log.is_online; const hasError = !!server.log.last_error; const discordComplete = server.discord?.complete; let borderClass = 'border-gray-200 dark:border-gray-700'; if (isOnline && !hasError) borderClass = 'border-green-500 shadow-[0_0_10px_rgba(34,197,94,0.2)]'; if (hasError) borderClass = 'border-red-500 shadow-[0_0_10px_rgba(239,68,68,0.2)]'; %>

<%= server.name %>

<%= server.identifier %>

<%= isOnline ? 'Online' : 'Offline' %>
Whitelist <%= server.whitelistEnabled ? '✅ Enabled' : '🔓 Disabled' %>
Last Sync <%= server.log.last_successful_sync ? new Date(server.log.last_successful_sync).toLocaleString() : 'Never' %>
Discord Channels <% if (discordComplete) { %> ✅ All 4 channels <% } else if (server.discord?.missing?.length > 0) { %>
Missing: <%= server.discord.missing.join(', ') %>
<% } else { %> Unable to check <% } %>
<% if (hasError) { %>
Error: <%= server.log.last_error %>
<% } %>
<% }) %> <% if(ncServers.length === 0) { %>

No servers found.

<% } %>