Files
Sdk_TV_app/templates/modern_archive_index.html
T
2025-08-10 10:31:15 +02:00

1248 lines
39 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Tournament Archive</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
background: #f5f5f5;
font-family: Arial, sans-serif;
min-height: 100vh;
}
/* Standardized Navigation Bar */
.navbar {
background: white;
color: black;
padding: 15px 25px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid #ccc;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-title {
font-size: 1.8rem;
font-weight: bold;
color: #333;
}
.navbar-controls {
display: flex;
gap: 12px;
align-items: center;
}
.nav-btn {
background: #f8f9fa;
border: 2px solid #e9ecef;
cursor: pointer;
padding: 12px 20px;
border-radius: 8px;
transition: all 0.2s ease;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
color: #333;
text-decoration: none;
font-weight: bold;
font-size: 0.9rem;
}
.nav-btn:hover {
background: #e9ecef;
border-color: #007bff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
transform: translateY(-1px);
color: #007bff;
}
.nav-btn.primary {
background: #007bff;
border-color: #0056b3;
color: white;
}
.nav-btn.primary:hover {
background: #0056b3;
color: white;
}
.nav-btn.success {
background: #28a745;
border-color: #1e7e34;
color: white;
}
.nav-btn.success:hover {
background: #1e7e34;
color: white;
}
.nav-btn.danger {
background: #dc3545;
border-color: #c82333;
color: white;
}
.nav-btn.danger:hover {
background: #c82333;
color: white;
}
/* Standardized Container */
.container {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
}
/* White Scrollbar for main page */
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-track {
background: white;
}
body::-webkit-scrollbar-thumb {
background: #e0e0e0;
border-radius: 6px;
border: 2px solid white;
}
body::-webkit-scrollbar-thumb:hover {
background: #c0c0c0;
}
.section {
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
}
.section-title {
font-size: 1.3rem;
font-weight: bold;
color: #333;
margin-bottom: 15px;
border-bottom: 3px solid #007bff;
padding-bottom: 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.section-controls {
display: flex;
gap: 10px;
align-items: center;
}
.filter-btn {
background: #f8f9fa;
border: 1px solid #dee2e6;
padding: 6px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 0.8rem;
transition: all 0.2s ease;
}
.filter-btn.active {
background: #007bff;
color: white;
border-color: #007bff;
}
.filter-btn:hover {
background: #e9ecef;
}
.filter-btn.active:hover {
background: #0056b3;
}
/* Enhanced Stats Overview */
.stats-overview {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 15px;
margin-bottom: 20px;
}
.stat-card {
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
border: 1px solid #e9ecef;
transition: transform 0.2s ease;
}
.stat-card:hover {
transform: translateY(-2px);
}
.stat-icon {
font-size: 2rem;
margin-bottom: 10px;
display: block;
}
.stat-value {
font-size: 1.8rem;
font-weight: bold;
color: #333;
margin-bottom: 5px;
}
.stat-label {
color: #666;
font-size: 0.8rem;
font-weight: 500;
text-transform: uppercase;
}
/* Target-specific stat cards */
.stat-card.target-40 {
border-left: 4px solid #dc3545;
}
.stat-card.target-20 {
border-left: 4px solid #ffc107;
}
.stat-card.target-4 {
border-left: 4px solid #28a745;
}
/* Enhanced Archive Grid */
.archive-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
}
.archive-card {
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border: 1px solid #e9ecef;
transition: all 0.2s ease;
cursor: pointer;
overflow: hidden;
position: relative;
}
.archive-card:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.archive-header {
background: #f8f9fa;
padding: 15px 20px;
border-bottom: 1px solid #e9ecef;
display: flex;
justify-content: space-between;
align-items: center;
}
.archive-card.league .archive-header {
background: #e8f5e8;
}
.archive-card.tournament .archive-header {
background: #fff3cd;
}
.archive-card.tournament-40 .archive-header {
background: #f8d7da;
}
.archive-card.tournament-20 .archive-header {
background: #fff3cd;
}
.archive-card.tournament-4 .archive-header {
background: #d1edff;
}
.archive-card.tournament-other .archive-header {
background: #f8f9fa;
}
.archive-title {
font-size: 1.2rem;
font-weight: bold;
color: #333;
margin-bottom: 3px;
}
.archive-subtitle {
font-size: 0.85rem;
color: #666;
}
.archive-badge {
padding: 6px 12px;
border-radius: 15px;
font-size: 0.75rem;
font-weight: bold;
text-transform: uppercase;
}
.badge-league {
background: #28a745;
color: white;
}
.badge-tournament {
background: #ffc107;
color: #856404;
}
.badge-40-targets {
background: #dc3545;
color: white;
}
.badge-20-targets {
background: #ffc107;
color: #856404;
}
.badge-4-targets {
background: #17a2b8;
color: white;
}
.archive-content {
padding: 15px 20px;
}
.archive-info {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 15px;
}
.info-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.85rem;
color: #666;
}
.info-icon {
font-size: 1rem;
}
.info-value {
font-weight: 600;
color: #333;
}
.archive-actions {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
padding-top: 12px;
border-top: 1px solid #f0f0f0;
}
.action-btn {
border: none;
padding: 8px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 0.8rem;
font-weight: bold;
transition: all 0.2s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}
.view-btn {
background: #007bff;
color: white;
flex: 1;
}
.view-btn:hover {
background: #0056b3;
transform: translateY(-1px);
}
.edit-btn {
background: #28a745;
color: white;
}
.edit-btn:hover {
background: #1e7e34;
}
.delete-btn {
background: #dc3545;
color: white;
}
.delete-btn:hover {
background: #c82333;
}
/* Empty State */
.empty-state {
text-align: center;
padding: 40px 20px;
color: #666;
}
.empty-state h3 {
font-size: 1.3rem;
margin-bottom: 8px;
color: #333;
}
.empty-icon {
font-size: 3rem;
margin-bottom: 15px;
opacity: 0.5;
}
/* Modal Styles */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.2s ease;
}
.modal-overlay.active {
opacity: 1;
visibility: visible;
}
.modal {
background: white;
border-radius: 8px;
padding: 20px;
max-width: 500px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
transform: scale(0.9);
transition: transform 0.2s ease;
}
.modal-overlay.active .modal {
transform: scale(1);
}
.modal-title {
font-size: 1.1rem;
font-weight: bold;
color: #333;
margin-bottom: 15px;
}
.modal-message {
color: #666;
margin-bottom: 15px;
line-height: 1.4;
}
.modal-buttons {
display: flex;
gap: 10px;
justify-content: flex-end;
margin-top: 20px;
}
.modal-btn {
padding: 8px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 500;
transition: background-color 0.2s ease;
}
.modal-btn.cancel {
background: #6c757d;
color: white;
}
.modal-btn.cancel:hover {
background: #5a6268;
}
.modal-btn.confirm {
background: #dc3545;
color: white;
}
.modal-btn.confirm:hover {
background: #c82333;
}
.modal-btn.primary {
background: #007bff;
color: white;
}
.modal-btn.primary:hover {
background: #0056b3;
}
/* Edit Form Styles */
.edit-form {
display: flex;
flex-direction: column;
gap: 15px;
}
.form-group {
display: flex;
flex-direction: column;
gap: 5px;
}
.form-label {
font-weight: bold;
color: #333;
font-size: 0.9rem;
}
.form-input {
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 0.9rem;
}
.form-input:focus {
outline: none;
border-color: #007bff;
}
.form-select {
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 0.9rem;
background: white;
}
.form-select:focus {
outline: none;
border-color: #007bff;
}
/* Hidden class for filtering */
.hidden {
display: none !important;
}
/* Mobile responsive */
@media (max-width: 768px) {
.navbar {
padding: 12px 20px;
flex-direction: column;
gap: 15px;
}
.navbar-controls {
flex-wrap: wrap;
justify-content: center;
}
.container {
padding: 15px;
height: auto;
}
.archive-grid {
grid-template-columns: 1fr;
}
.stats-overview {
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.archive-header {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.archive-info {
grid-template-columns: 1fr;
gap: 8px;
}
.archive-actions {
flex-direction: column;
align-items: stretch;
gap: 8px;
}
.action-btn {
text-align: center;
}
.section-title {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.section-controls {
flex-wrap: wrap;
}
}
</style>
</head>
<body>
<div class="navbar">
<div class="navbar-title">📚 Tournament Archive</div>
<div class="navbar-controls">
<a href="/" class="nav-btn">← Dashboard</a>
<a href="/tournament" class="nav-btn">🏆 Tournament</a>
<a href="/archive/player-analysis" class="nav-btn success">👤 Player Analysis</a>
</div>
</div>
<div class="container">
<!-- Enhanced Stats Overview -->
<div class="stats-overview">
<div class="stat-card">
<span class="stat-icon">🎖️</span>
<div class="stat-value">{{ leagues|length if leagues else 0 }}</div>
<div class="stat-label">Completed Leagues</div>
</div>
<div class="stat-card">
<span class="stat-icon">🏆</span>
<div class="stat-value">{{ tournaments|length if tournaments else 0 }}</div>
<div class="stat-label">Total Tournaments</div>
</div>
<div class="stat-card target-40">
<span class="stat-icon">🎯</span>
<div class="stat-value">{{ tournaments|selectattr('tournament_type', 'equalto', '40_targets')|list|length if tournaments else 0 }}</div>
<div class="stat-label">40-Target Tournaments</div>
</div>
<div class="stat-card target-20">
<span class="stat-icon">🏹</span>
<div class="stat-value">{{ tournaments|selectattr('tournament_type', 'equalto', '20_targets')|list|length if tournaments else 0 }}</div>
<div class="stat-label">20-Target Tournaments</div>
</div>
<div class="stat-card target-4">
<span class="stat-icon">🎪</span>
<div class="stat-value">{{ tournaments|selectattr('tournament_type', 'equalto', '4_targets')|list|length if tournaments else 0 }}</div>
<div class="stat-label">4-Target Tournaments</div>
</div>
<div class="stat-card">
<span class="stat-icon">👥</span>
<div class="stat-value">{{ stats.total_players if stats else 0 }}</div>
<div class="stat-label">Active Players</div>
</div>
</div>
<!-- Leagues Section -->
{% if leagues %}
<div class="section">
<div class="section-title">
<span>🎖️ League Championships</span>
<div class="section-controls">
<button class="filter-btn active" onclick="filterLeagues('all')">All</button>
<button class="filter-btn" onclick="filterLeagues('completed')">Completed</button>
<button class="filter-btn" onclick="filterLeagues('recent')">Recent</button>
</div>
</div>
<div class="archive-grid" id="leagues-grid">
{% for league in leagues %}
<div class="archive-card league" data-status="{{ 'completed' if league.completed_tournaments == league.total_tournaments else 'incomplete' }}" data-date="{{ league.archived_at }}" onclick="viewLeague('{{ league.filename }}')">
<div class="archive-header">
<div>
<div class="archive-title">League Championship</div>
<div class="archive-subtitle">{{ league.created_at[:10] if league.created_at != 'Unknown' else 'Unknown Date' }}</div>
</div>
<span class="archive-badge badge-league">League</span>
</div>
<div class="archive-content">
<div class="archive-info">
<div class="info-item">
<span class="info-icon">👥</span>
<span class="info-value">{{ league.participants_count }} players</span>
</div>
<div class="info-item">
<span class="info-icon">🎯</span>
<span class="info-value">{{ league.tournament_type.replace('_', ' ')|title }}</span>
</div>
<div class="info-item">
<span class="info-icon">📅</span>
<span class="info-value">{{ league.archived_at[:10] if league.archived_at != 'Unknown' else 'Unknown Date' }}</span>
</div>
<div class="info-item">
<span class="info-icon"></span>
<span class="info-value">{{ league.completed_tournaments }}/{{ league.total_tournaments }} tournaments</span>
</div>
</div>
<div class="archive-actions">
<a href="/archive/league/{{ league.filename }}" class="action-btn view-btn">🏆 View</a>
<button class="action-btn edit-btn" onclick="event.stopPropagation(); editArchive('league', '{{ league.filename }}', {{ league|tojson }})">
✏️ Edit
</button>
<button class="action-btn delete-btn" onclick="event.stopPropagation(); deleteArchive('league', '{{ league.filename }}')">
🗑️
</button>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- Tournaments Section - Organized by Target Count -->
{% if tournaments %}
<!-- 40-Target Tournaments -->
{% set tournaments_40 = tournaments|selectattr('tournament_type', 'equalto', '40_targets')|list %}
{% if tournaments_40 %}
<div class="section">
<div class="section-title">
<span>🎯 40-Target Tournaments</span>
<div class="section-controls">
<button class="filter-btn active" onclick="filterTournaments('40', 'all')">All</button>
<button class="filter-btn" onclick="filterTournaments('40', 'finished')">Finished</button>
<button class="filter-btn" onclick="filterTournaments('40', 'recent')">Recent</button>
</div>
</div>
<div class="archive-grid" id="tournaments-40-grid">
{% for tournament in tournaments_40 %}
<div class="archive-card tournament-40" data-status="{{ 'finished' if tournament.tournament_finished else 'incomplete' }}" data-date="{{ tournament.archived_at }}" data-targets="40" onclick="viewTournament('{{ tournament.filename }}')">
<div class="archive-header">
<div>
<div class="archive-title">40-Target Tournament</div>
<div class="archive-subtitle">{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else 'Unknown Date' }}</div>
</div>
<span class="archive-badge badge-40-targets">40 Targets</span>
</div>
<div class="archive-content">
<div class="archive-info">
<div class="info-item">
<span class="info-icon">👥</span>
<span class="info-value">{{ tournament.participants_count }} players</span>
</div>
<div class="info-item">
<span class="info-icon">🎯</span>
<span class="info-value">{{ tournament.tournament_type.replace('_', ' ')|title }}</span>
</div>
<div class="info-item">
<span class="info-icon">📅</span>
<span class="info-value">{{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else 'Unknown Date' }}</span>
</div>
<div class="info-item">
<span class="info-icon">🏁</span>
<span class="info-value">{{ 'Finished' if tournament.tournament_finished else 'Incomplete' }}</span>
</div>
</div>
<div class="archive-actions">
<a href="/archive/tournament/{{ tournament.filename }}" class="action-btn view-btn">📊 View</a>
<button class="action-btn edit-btn" onclick="event.stopPropagation(); editArchive('tournament', '{{ tournament.filename }}', {{ tournament|tojson }})">
✏️ Edit
</button>
<button class="action-btn delete-btn" onclick="event.stopPropagation(); deleteArchive('tournament', '{{ tournament.filename }}')">
🗑️
</button>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- 20-Target Tournaments -->
{% set tournaments_20 = tournaments|selectattr('tournament_type', 'equalto', '20_targets')|list %}
{% if tournaments_20 %}
<div class="section">
<div class="section-title">
<span>🏹 20-Target Tournaments</span>
<div class="section-controls">
<button class="filter-btn active" onclick="filterTournaments('20', 'all')">All</button>
<button class="filter-btn" onclick="filterTournaments('20', 'finished')">Finished</button>
<button class="filter-btn" onclick="filterTournaments('20', 'recent')">Recent</button>
</div>
</div>
<div class="archive-grid" id="tournaments-20-grid">
{% for tournament in tournaments_20 %}
<div class="archive-card tournament-20" data-status="{{ 'finished' if tournament.tournament_finished else 'incomplete' }}" data-date="{{ tournament.archived_at }}" data-targets="20" onclick="viewTournament('{{ tournament.filename }}')">
<div class="archive-header">
<div>
<div class="archive-title">20-Target Tournament</div>
<div class="archive-subtitle">{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else 'Unknown Date' }}</div>
</div>
<span class="archive-badge badge-20-targets">20 Targets</span>
</div>
<div class="archive-content">
<div class="archive-info">
<div class="info-item">
<span class="info-icon">👥</span>
<span class="info-value">{{ tournament.participants_count }} players</span>
</div>
<div class="info-item">
<span class="info-icon">🎯</span>
<span class="info-value">{{ tournament.tournament_type.replace('_', ' ')|title }}</span>
</div>
<div class="info-item">
<span class="info-icon">📅</span>
<span class="info-value">{{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else 'Unknown Date' }}</span>
</div>
<div class="info-item">
<span class="info-icon">🏁</span>
<span class="info-value">{{ 'Finished' if tournament.tournament_finished else 'Incomplete' }}</span>
</div>
</div>
<div class="archive-actions">
<a href="/archive/tournament/{{ tournament.filename }}" class="action-btn view-btn">📊 View</a>
<button class="action-btn edit-btn" onclick="event.stopPropagation(); editArchive('tournament', '{{ tournament.filename }}', {{ tournament|tojson }})">
✏️ Edit
</button>
<button class="action-btn delete-btn" onclick="event.stopPropagation(); deleteArchive('tournament', '{{ tournament.filename }}')">
🗑️
</button>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- 4-Target Tournaments -->
{% set tournaments_4 = tournaments|selectattr('tournament_type', 'equalto', '4_targets')|list %}
{% if tournaments_4 %}
<div class="section">
<div class="section-title">
<span>🎪 4-Target Tournaments</span>
<div class="section-controls">
<button class="filter-btn active" onclick="filterTournaments('4', 'all')">All</button>
<button class="filter-btn" onclick="filterTournaments('4', 'finished')">Finished</button>
<button class="filter-btn" onclick="filterTournaments('4', 'recent')">Recent</button>
</div>
</div>
<div class="archive-grid" id="tournaments-4-grid">
{% for tournament in tournaments_4 %}
<div class="archive-card tournament-4" data-status="{{ 'finished' if tournament.tournament_finished else 'incomplete' }}" data-date="{{ tournament.archived_at }}" data-targets="4" onclick="viewTournament('{{ tournament.filename }}')">
<div class="archive-header">
<div>
<div class="archive-title">4-Target Tournament</div>
<div class="archive-subtitle">{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else 'Unknown Date' }}</div>
</div>
<span class="archive-badge badge-4-targets">4 Targets</span>
</div>
<div class="archive-content">
<div class="archive-info">
<div class="info-item">
<span class="info-icon">👥</span>
<span class="info-value">{{ tournament.participants_count }} players</span>
</div>
<div class="info-item">
<span class="info-icon">🎯</span>
<span class="info-value">{{ tournament.tournament_type.replace('_', ' ')|title }}</span>
</div>
<div class="info-item">
<span class="info-icon">📅</span>
<span class="info-value">{{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else 'Unknown Date' }}</span>
</div>
<div class="info-item">
<span class="info-icon">🏁</span>
<span class="info-value">{{ 'Finished' if tournament.tournament_finished else 'Incomplete' }}</span>
</div>
</div>
<div class="archive-actions">
<a href="/archive/tournament/{{ tournament.filename }}" class="action-btn view-btn">📊 View</a>
<button class="action-btn edit-btn" onclick="event.stopPropagation(); editArchive('tournament', '{{ tournament.filename }}', {{ tournament|tojson }})">
✏️ Edit
</button>
<button class="action-btn delete-btn" onclick="event.stopPropagation(); deleteArchive('tournament', '{{ tournament.filename }}')">
🗑️
</button>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
<!-- Other/Unknown Target Count Tournaments -->
{% set tournaments_other = tournaments|rejectattr('tournament_type', 'in', ['4_targets', '20_targets', '40_targets'])|list %}
{% if tournaments_other %}
<div class="section">
<div class="section-title">
<span>🏆 Other Tournaments</span>
<div class="section-controls">
<button class="filter-btn active" onclick="filterTournaments('other', 'all')">All</button>
<button class="filter-btn" onclick="filterTournaments('other', 'finished')">Finished</button>
<button class="filter-btn" onclick="filterTournaments('other', 'recent')">Recent</button>
</div>
</div>
<div class="archive-grid" id="tournaments-other-grid">
{% for tournament in tournaments_other %}
<div class="archive-card tournament-other" data-status="{{ 'finished' if tournament.tournament_finished else 'incomplete' }}" data-date="{{ tournament.archived_at }}" data-targets="other" onclick="viewTournament('{{ tournament.filename }}')">
<div class="archive-header">
<div>
<div class="archive-title">Tournament ({{ tournament.tournament_type or 'Unknown' }})</div>
<div class="archive-subtitle">{{ tournament.created_at[:10] if tournament.created_at != 'Unknown' else 'Unknown Date' }}</div>
</div>
<span class="archive-badge badge-tournament">Tournament</span>
</div>
<div class="archive-content">
<div class="archive-info">
<div class="info-item">
<span class="info-icon">👥</span>
<span class="info-value">{{ tournament.participants_count }} players</span>
</div>
<div class="info-item">
<span class="info-icon">🎯</span>
<span class="info-value">{{ tournament.tournament_type.replace('_', ' ')|title }}</span>
</div>
<div class="info-item">
<span class="info-icon">📅</span>
<span class="info-value">{{ tournament.archived_at[:10] if tournament.archived_at != 'Unknown' else 'Unknown Date' }}</span>
</div>
<div class="info-item">
<span class="info-icon">🏁</span>
<span class="info-value">{{ 'Finished' if tournament.tournament_finished else 'Incomplete' }}</span>
</div>
</div>
<div class="archive-actions">
<a href="/archive/tournament/{{ tournament.filename }}" class="action-btn view-btn">📊 View</a>
<button class="action-btn edit-btn" onclick="event.stopPropagation(); editArchive('tournament', '{{ tournament.filename }}', {{ tournament|tojson }})">
✏️ Edit
</button>
<button class="action-btn delete-btn" onclick="event.stopPropagation(); deleteArchive('tournament', '{{ tournament.filename }}')">
🗑️
</button>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
{% endif %}
<!-- Empty State -->
{% if not leagues and not tournaments %}
<div class="section">
<div class="empty-state">
<div class="empty-icon">📚</div>
<h3>No Archives Found</h3>
<p>Complete some tournaments or leagues to see them archived here</p>
<a href="/tournament" class="nav-btn primary" style="margin-top: 15px;">🏆 Start Tournament</a>
</div>
</div>
{% endif %}
</div>
<!-- Confirmation Modal -->
<div class="modal-overlay" id="confirmationModal">
<div class="modal">
<div class="modal-title" id="modalTitle">Confirm Action</div>
<div class="modal-message" id="modalMessage">Are you sure you want to proceed?</div>
<div class="modal-buttons">
<button class="modal-btn cancel" onclick="closeModal()">Cancel</button>
<button class="modal-btn confirm" id="confirmBtn" onclick="confirmAction()">Confirm</button>
</div>
</div>
</div>
<!-- Edit Modal -->
<div class="modal-overlay" id="editModal">
<div class="modal">
<div class="modal-title" id="editModalTitle">Edit Archive</div>
<form class="edit-form" id="editForm">
<div class="form-group">
<label class="form-label">Archive Name</label>
<input type="text" class="form-input" id="editName" placeholder="Enter archive name">
</div>
<div class="form-group">
<label class="form-label">Format Type</label>
<select class="form-select" id="editType">
<option value="single_elimination">Single Elimination</option>
<option value="double_elimination">Double Elimination</option>
<option value="round_robin">Round Robin</option>
<option value="swiss">Swiss System</option>
<option value="league">League Championship</option>
</select>
</div>
<div class="form-group" id="targetCountGroup">
<label class="form-label">Target Format</label>
<select class="form-select" id="editTargetCount">
<option value="4_targets">4 Targets (5 shots each)</option>
<option value="20_targets">20 Targets (2 shots each)</option>
<option value="40_targets">40 Targets (2 shots each)</option>
</select>
</div>
<div class="form-group">
<label class="form-label">Notes</label>
<input type="text" class="form-input" id="editNotes" placeholder="Add notes about this tournament">
</div>
</form>
<div class="modal-buttons">
<button class="modal-btn cancel" onclick="closeEditModal()">Cancel</button>
<button class="modal-btn primary" onclick="saveEdit()">Save Changes</button>
</div>
</div>
</div>
<script>
let pendingAction = null;
let editingItem = null;
// Navigation functions
function viewTournament(filename) {
window.location.href = `/archive/tournament/${filename}`;
}
function viewLeague(filename) {
window.location.href = `/archive/league/${filename}`;
}
// Delete function
async function deleteArchive(type, filename) {
showModal(
'Delete Archive',
`Are you sure you want to delete this ${type}? This action cannot be undone.`,
async () => {
try {
const response = await fetch(`/api/archive/delete/${type}/${filename}`, {
method: 'POST'
});
const result = await response.json();
if (result.status === 'success') {
alert('Archive deleted successfully');
location.reload();
} else {
alert('Error deleting archive: ' + result.message);
}
} catch (error) {
alert('Error deleting archive: ' + error.message);
}
closeModal();
}
);
}
// Edit function
function editArchive(type, filename, data) {
editingItem = { type, filename, data };
document.getElementById('editModalTitle').textContent = `Edit ${type.charAt(0).toUpperCase() + type.slice(1)}`;
document.getElementById('editName').value = data.name || `${type} - ${data.created_at?.substring(0, 10) || 'Unknown'}`;
// For format type, use a default since this isn't typically stored
document.getElementById('editType').value = type === 'league' ? 'league' : 'single_elimination';
document.getElementById('editNotes').value = data.notes || '';
// Show/hide target count field - both tournaments and leagues have tournament_type
const targetCountGroup = document.getElementById('targetCountGroup');
if (type === 'tournament' || type === 'league') {
targetCountGroup.style.display = 'flex';
document.getElementById('editTargetCount').value = data.tournament_type || '20_targets';
} else {
targetCountGroup.style.display = 'none';
}
document.getElementById('editModal').classList.add('active');
}
// Save edit function
async function saveEdit() {
if (!editingItem) return;
const updatedData = {
name: document.getElementById('editName').value,
notes: document.getElementById('editNotes').value
};
// For both tournaments and leagues, save the tournament_type (target format)
if (editingItem.type === 'tournament' || editingItem.type === 'league') {
updatedData.tournament_type = document.getElementById('editTargetCount').value;
}
try {
const response = await fetch(`/api/archive/update/${editingItem.type}/${editingItem.filename}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(updatedData)
});
const result = await response.json();
if (result.status === 'success') {
alert('Archive updated successfully');
location.reload();
} else {
alert('Error updating archive: ' + result.message);
}
} catch (error) {
alert('Error updating archive: ' + error.message);
}
closeEditModal();
}
// Filtering functions
function filterLeagues(filter) {
const cards = document.querySelectorAll('#leagues-grid .archive-card');
const buttons = document.querySelectorAll('#leagues-grid').parentElement.querySelectorAll('.filter-btn');
// Update active button
buttons.forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
// Filter cards
cards.forEach(card => {
const isCompleted = card.dataset.status === 'completed';
const date = new Date(card.dataset.date);
const isRecent = (Date.now() - date.getTime()) < (30 * 24 * 60 * 60 * 1000); // Last 30 days
let show = true;
if (filter === 'completed' && !isCompleted) show = false;
if (filter === 'recent' && !isRecent) show = false;
card.classList.toggle('hidden', !show);
});
}
function filterTournaments(targetCount, filter) {
const gridId = targetCount === 'other' ? 'tournaments-other-grid' : `tournaments-${targetCount}-grid`;
const cards = document.querySelectorAll(`#${gridId} .archive-card`);
const section = document.querySelector(`#${gridId}`).closest('.section');
const buttons = section.querySelectorAll('.filter-btn');
// Update active button
buttons.forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
// Filter cards
cards.forEach(card => {
const isFinished = card.dataset.status === 'finished';
const date = new Date(card.dataset.date);
const isRecent = (Date.now() - date.getTime()) < (30 * 24 * 60 * 60 * 1000); // Last 30 days
let show = true;
if (filter === 'finished' && !isFinished) show = false;
if (filter === 'recent' && !isRecent) show = false;
card.classList.toggle('hidden', !show);
});
}
// Modal functions
function showModal(title, message, confirmCallback) {
document.getElementById('modalTitle').textContent = title;
document.getElementById('modalMessage').textContent = message;
pendingAction = confirmCallback;
document.getElementById('confirmationModal').classList.add('active');
}
function closeModal() {
document.getElementById('confirmationModal').classList.remove('active');
pendingAction = null;
}
function closeEditModal() {
document.getElementById('editModal').classList.remove('active');
editingItem = null;
}
function confirmAction() {
if (pendingAction) {
pendingAction();
}
}
// Click outside modal to close
document.getElementById('confirmationModal').addEventListener('click', function(e) {
if (e.target === this) {
closeModal();
}
});
document.getElementById('editModal').addEventListener('click', function(e) {
if (e.target === this) {
closeEditModal();
}
});
// Initialize page
document.addEventListener('DOMContentLoaded', function() {
console.log('📚 Enhanced Archive loaded');
console.log('🏆 Total Tournaments:', {{ tournaments|length if tournaments else 0 }});
console.log('🎖️ Leagues:', {{ leagues|length if leagues else 0 }});
{% if tournaments %}
const tournaments = {{ tournaments|tojson }};
console.log('Tournament data sample:', tournaments[0] || 'No tournaments');
// Count tournaments by type
const tournaments40 = tournaments.filter(t => t.tournament_type === '40_targets');
const tournaments20 = tournaments.filter(t => t.tournament_type === '20_targets');
const tournaments4 = tournaments.filter(t => t.tournament_type === '4_targets');
const tournamentsOther = tournaments.filter(t => !['4_targets', '20_targets', '40_targets'].includes(t.tournament_type));
console.log('🎯 40-Target Tournaments:', tournaments40.length);
console.log('🏹 20-Target Tournaments:', tournaments20.length);
console.log('🎪 4-Target Tournaments:', tournaments4.length);
console.log('🏆 Other Tournaments:', tournamentsOther.length);
// Log tournament types for debugging
const tournamentTypes = [...new Set(tournaments.map(t => t.tournament_type))];
console.log('Available tournament types:', tournamentTypes);
{% else %}
console.log('🎯 40-Target Tournaments: 0');
console.log('🏹 20-Target Tournaments: 0');
console.log('🎪 4-Target Tournaments: 0');
console.log('🏆 Other Tournaments: 0');
{% endif %}
});
</script>
</body>
</html>