selector and web
Build / build (push) Has been cancelled

This commit is contained in:
gpatruno
2026-06-07 00:35:18 +02:00
parent 211779785d
commit 836499d10d
18 changed files with 1189 additions and 25 deletions
@@ -0,0 +1,30 @@
<% if (characters.length === 0) { %>
<section class="panel">
<p class="empty">Aucun personnage trouvé pour ce compte.</p>
</section>
<% } else { %>
<% characters.forEach(function(character) { %>
<section class="panel character-inventory-block">
<div class="character-inventory-head">
<div>
<h2><%= character.display_name %></h2>
<p class="muted character-meta">
Niveau <%= character.level %>
· <%= character.classLabel %>
· <%= character.raceLabel %>
· <%= fmt.formatMoney(character.money) %> money
</p>
</div>
<% if (character.isActive) { %>
<span class="tag tag-online">Personnage actif</span>
<% } %>
</div>
<%- include('inventory-panel', {
playerInventory: character.playerInventory,
panelTitle: null,
embedded: true
}) %>
</section>
<% }); %>
<% } %>