129 lines
7.4 KiB
HTML
129 lines
7.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Data Import - HKFC Men's C Team</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3>Import Data from Hong Kong Hockey Association</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ 'danger' if category == 'error' else 'success' }} alert-dismissible fade show" role="alert">
|
|
{{ message }}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<div class="alert alert-info">
|
|
<h5>Data Source</h5>
|
|
<p>This import feature populates the database with clubs and teams from the <a href="https://hockey.org.hk/MenStanding.asp" target="_blank">Hong Kong Hockey Association Men's League Standings</a>.</p>
|
|
<p><strong>Note:</strong> Only new records will be imported. Existing clubs and teams will be skipped to prevent duplicates.</p>
|
|
</div>
|
|
|
|
<form method="POST">
|
|
{{ form.hidden_tag() }}
|
|
|
|
<div class="mb-4">
|
|
<h5>Import Options</h5>
|
|
|
|
<div class="form-check mb-3">
|
|
{{ form.import_clubs(class="form-check-input") }}
|
|
{{ form.import_clubs.label(class="form-check-label") }}
|
|
<small class="form-text text-muted d-block">
|
|
Import 30+ hockey clubs including HKFC, KCC, USRC, Valley, SSSC, Dragons, etc.
|
|
</small>
|
|
<div class="mt-2">
|
|
<a href="/admin/import/clubs/select" class="btn btn-outline-primary btn-sm">
|
|
Select Specific Clubs
|
|
</a>
|
|
<small class="text-muted d-block mt-1">
|
|
Choose which clubs to import instead of importing all
|
|
</small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-check mb-3">
|
|
{{ form.import_teams(class="form-check-input") }}
|
|
{{ form.import_teams.label(class="form-check-label") }}
|
|
<small class="form-text text-muted d-block">
|
|
Import teams from all 6 divisions (Premier, 1st, 2nd, 3rd, 4th, 5th, 6th Division)
|
|
</small>
|
|
</div>
|
|
|
|
<div class="form-check mb-3">
|
|
{{ form.import_players(class="form-check-input") }}
|
|
{{ form.import_players.label(class="form-check-label") }}
|
|
<small class="form-text text-muted d-block">
|
|
Import 5 sample players for HKFC C team (optional)
|
|
</small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-grid gap-2 d-md-flex justify-content-md-end">
|
|
{{ form.cancel(class="btn btn-secondary me-md-2") }}
|
|
{{ form.import_data(class="btn btn-primary") }}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-3">
|
|
<a href="/admin" class="btn btn-outline-secondary">Back to Admin</a>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5>What Gets Imported</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h6>Clubs (30+ clubs)</h6>
|
|
<ul class="list-unstyled">
|
|
<li>• HKFC, KCC, USRC, Valley</li>
|
|
<li>• SSSC, Dragons, Kai Tak, RHOBA</li>
|
|
<li>• Elite, Aquila, HKJ, Sirius</li>
|
|
<li>• Shaheen, Diocesan, Rhino, Khalsa</li>
|
|
<li>• HKCC, Police, Recreio, CSD</li>
|
|
<li>• Dutch, HKUHC, Kaitiaki, Antlers</li>
|
|
<li>• Marcellin, Skyers, JR, IUHK</li>
|
|
<li>• 144U, HKU, and more...</li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<h6>Teams (60+ teams across 6 divisions)</h6>
|
|
<ul class="list-unstyled">
|
|
<li>• <strong>Premier Division:</strong> HKFC A, KCC A, USRC A, Valley A</li>
|
|
<li>• <strong>1st Division:</strong> HKFC B, KCC B, USRC B, Valley B</li>
|
|
<li>• <strong>2nd Division:</strong> HKFC C, KCC C, USRC C, Valley C</li>
|
|
<li>• <strong>3rd Division:</strong> SSSC C, Dragons A, Kai Tak B, etc.</li>
|
|
<li>• <strong>4th Division:</strong> Khalsa C, HKCC C, Valley D, etc.</li>
|
|
<li>• <strong>5th Division:</strong> KCC D, Kai Tak C, Dragons B, etc.</li>
|
|
<li>• <strong>6th Division:</strong> Rhino B, Skyers A, JR, etc.</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|