Files
comunidadhll/frontend/historico-partida.html
devRaGonSa 0cf98a1be9
Some checks failed
Codex Worker / run-codex-worker (push) Has been cancelled
initial export
2026-06-02 16:23:16 +02:00

168 lines
7.2 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Detalle interno de una partida historica registrada por HLL Vietnam."
/>
<title>Detalle de partida - HLL Vietnam</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
<link rel="stylesheet" href="./assets/css/historico.css" />
<link rel="stylesheet" href="./assets/css/historico-scoreboard-detail.css" />
</head>
<body data-backend-base-url="http://127.0.0.1:8000">
<div class="page-shell historical-shell">
<header class="hero historical-hero">
<div class="hero__overlay"></div>
<div class="hero__content historical-hero__content">
<div class="historical-hero__topline">
<a class="secondary-button secondary-button--ghost" href="./historico.html">
VOLVER HISTORICO
</a>
<p class="eyebrow">Detalle interno</p>
</div>
<div class="historical-hero__layout">
<div class="logo-frame historical-logo-frame">
<img
src="./assets/img/logo.png"
alt="Logo oficial de la comunidad HLL Vietnam"
class="logo-frame__image"
width="1024"
height="1044"
decoding="async"
/>
</div>
<div class="historical-hero__copy">
<div>
<h1 class="historical-hero__title" id="match-detail-title">
Partida registrada
</h1>
<p class="hero__text historical-hero__text" id="match-detail-summary">
Cargando datos disponibles del historico local.
</p>
</div>
</div>
<figure class="historical-map-hero" id="match-detail-map-hero" hidden>
<img
class="historical-map-hero__image"
id="match-detail-map-image"
src=""
alt=""
width="960"
height="540"
loading="eager"
decoding="async"
/>
</figure>
</div>
</div>
</header>
<main class="content historical-content">
<section class="panel historical-panel" aria-labelledby="match-detail-panel-title">
<div class="panel__shell">
<div class="panel__header historical-panel__header">
<div>
<p class="eyebrow eyebrow--section">Partida historica</p>
<h2 id="match-detail-panel-title">Marcador final</h2>
<p class="historical-panel__note" id="match-detail-note">
Leyendo el detalle interno de la partida.
</p>
</div>
</div>
<p class="historical-state" id="match-detail-state" aria-live="polite">
Cargando detalle...
</p>
<div class="historical-summary-grid" id="match-detail-grid" hidden></div>
<div class="historical-match-card__actions" id="match-detail-actions" hidden></div>
<div class="historical-detail-section" id="match-detail-players-section" hidden>
<div class="historical-detail-section__header">
<div>
<p class="eyebrow eyebrow--section">Jugadores</p>
<h3>Registro de jugadores</h3>
</div>
<p class="historical-panel__note" id="match-detail-players-note">
Revisando si existen estadisticas por jugador.
</p>
</div>
<p class="historical-state" id="match-detail-players-state" hidden></p>
<form
class="historical-player-controls"
id="match-detail-player-controls"
aria-label="Controles de jugadores"
hidden
>
<fieldset class="historical-player-control historical-player-control--team-toggle">
<legend>Equipo</legend>
<div class="historical-player-team-toggle" role="radiogroup" aria-label="Filtro por equipo">
<label class="historical-player-team-toggle__item historical-player-team-toggle__item--all">
<input type="radio" name="match-detail-player-team-filter" value="all" checked />
<span>Todos</span>
</label>
<label class="historical-player-team-toggle__item historical-player-team-toggle__item--allies">
<input type="radio" name="match-detail-player-team-filter" value="allies" />
<span>Aliados</span>
</label>
<label class="historical-player-team-toggle__item historical-player-team-toggle__item--axis">
<input type="radio" name="match-detail-player-team-filter" value="axis" />
<span>Eje</span>
</label>
</div>
</fieldset>
<label class="historical-player-control historical-player-control--search">
<span>Buscar jugador</span>
<input
id="match-detail-player-search"
type="search"
placeholder="Nombre del jugador"
autocomplete="off"
/>
</label>
<label class="historical-player-control">
<span>Ordenar por</span>
<select id="match-detail-player-sort">
<option value="kills" selected>Kills</option>
<option value="deaths">Muertes</option>
<option value="teamkills">TK</option>
<option value="kd">KD</option>
<option value="kpm">KPM</option>
<option value="name">Jugador</option>
</select>
</label>
<label class="historical-player-control">
<span>Direccion</span>
<select id="match-detail-player-sort-direction">
<option value="desc" selected>Descendente</option>
<option value="asc">Ascendente</option>
</select>
</label>
</form>
<div class="historical-table-shell" id="match-detail-players-table-shell" hidden>
<table class="historical-table historical-table--players">
<thead>
<tr>
<th>Jugador</th>
<th>Equipo</th>
<th>Kills</th>
<th>Muertes</th>
<th>TK</th>
<th>KD</th>
<th>KPM</th>
</tr>
</thead>
<tbody id="match-detail-players-body"></tbody>
</table>
</div>
</div>
</div>
</section>
</main>
</div>
<script src="./assets/js/config.js"></script>
<script src="./assets/js/historico-partida.js"></script>
</body>
</html>