<%- include('partials/page-start') %> <%- include('partials/page-header', { title, subtitle: 'Vue d\'ensemble du serveur en temps réel' }) %>
Joueurs en ligne <%= fmt.formatNumber(stats.onlinePlayers) %>
Joueurs inscrits <%= fmt.formatNumber(stats.totalPlayers) %>
Niveau moyen <%= stats.averageLevel %>
Money en circulation <%= fmt.formatMoney(stats.totalMoney) %>
Groupes actifs <%= fmt.formatNumber(stats.totalGroups) %>

Joueurs connectés

<%= onlinePlayers.length %>
<% if (onlinePlayers.length === 0) { %>

Aucun joueur connecté pour le moment.

<% } else { %> <% onlinePlayers.forEach(function(p) { %> <% }); %>
Joueur Niveau Classe Race Money
<%= p.display_name %> <%= p.level %> <%= p.classLabel %> <%= p.raceLabel %> <%= fmt.formatMoney(p.money) %> Profil
<% } %>

Dernières connexions

<% if (recentPlayers.length === 0) { %>

Aucun joueur enregistré.

<% } else { %> <% recentPlayers.forEach(function(p) { %> <% }); %>
Joueur Niveau Statut Dernière connexion
<%= p.display_name %> <%= p.level %> <% if (p.isOnline) { %> En ligne <% } else { %> Hors ligne <% } %> <%= fmt.formatTimestamp(p.last_date_connected) %> Profil
<% } %>
<%- include('partials/page-end') %>