116 lines
5.9 KiB
HTML
116 lines
5.9 KiB
HTML
<html>
|
|
<head>
|
|
<title>HKFC Men's C Team - MOTM System</title>
|
|
<link rel="stylesheet" media="screen" href ="/static/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/static/css/bootstrap-theme.min.css">
|
|
<meta name="viewport" content = "width=device-width, initial-scale=1.0">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
<script src="/static/js/bootstrap.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h1>HKFC Men's C Team - Man of the Match System</h1>
|
|
<div class="jumbotron">
|
|
<h2>Welcome to the MOTM Voting System</h2>
|
|
<p>This system allows players to vote for Man of the Match and Dick of the Day, while providing admin tools for managing matches and squads.</p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h3>Player Section</h3>
|
|
<div class="list-group">
|
|
<a href="/motm/comments" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Match Comments</h4>
|
|
<p class="list-group-item-text">View comments from recent matches</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% if is_admin %}
|
|
<div class="col-md-6">
|
|
<h3>Admin Section</h3>
|
|
<div class="list-group">
|
|
<a href="/admin" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Admin Dashboard</h4>
|
|
<p class="list-group-item-text">Access all administrative functions</p>
|
|
</a>
|
|
<a href="/admin/players" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Player Management</h4>
|
|
<p class="list-group-item-text">Add, edit, and manage players in the database</p>
|
|
</a>
|
|
<a href="/admin/clubs" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Club Management</h4>
|
|
<p class="list-group-item-text">Add, edit, and manage hockey clubs</p>
|
|
</a>
|
|
<a href="/admin/teams" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Team Management</h4>
|
|
<p class="list-group-item-text">Add, edit, and manage hockey teams</p>
|
|
</a>
|
|
<a href="/admin/import" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Data Import</h4>
|
|
<p class="list-group-item-text">Import clubs and teams from Hong Kong Hockey Association</p>
|
|
</a>
|
|
<a href="/admin/squad" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Match Squad Selection</h4>
|
|
<p class="list-group-item-text">Select players for the match squad</p>
|
|
</a>
|
|
<a href="/admin/squad/list" class="list-group-item">
|
|
<h4 class="list-group-item-heading">View Current Squad</h4>
|
|
<p class="list-group-item-text">View current match squad</p>
|
|
</a>
|
|
<a href="/admin/squad/reset" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Reset Squad</h4>
|
|
<p class="list-group-item-text">Reset squad for new match</p>
|
|
</a>
|
|
<a href="/admin/motm" class="list-group-item">
|
|
<h4 class="list-group-item-heading">MOTM Admin</h4>
|
|
<p class="list-group-item-text">Manage match settings and activate voting</p>
|
|
</a>
|
|
<a href="/admin/stats" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Goals & Assists</h4>
|
|
<p class="list-group-item-text">Record goals and assists statistics</p>
|
|
</a>
|
|
<a href="/admin/voting" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Voting Results</h4>
|
|
<p class="list-group-item-text">View current match voting results</p>
|
|
</a>
|
|
<a href="/admin/poty" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Player of the Year</h4>
|
|
<p class="list-group-item-text">View season totals and Player of the Year standings</p>
|
|
</a>
|
|
<a href="/admin/database-setup" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Database Setup</h4>
|
|
<p class="list-group-item-text">Configure and initialize the database</p>
|
|
</a>
|
|
<a href="/admin/database-status" class="list-group-item">
|
|
<h4 class="list-group-item-heading">Database Status</h4>
|
|
<p class="list-group-item-text">View current database configuration and status</p>
|
|
</a>
|
|
<a href="/admin/s3-config" class="list-group-item">
|
|
<h4 class="list-group-item-heading">S3 Configuration</h4>
|
|
<p class="list-group-item-text">Configure AWS S3 storage for logos and assets</p>
|
|
</a>
|
|
<a href="/admin/s3-status" class="list-group-item">
|
|
<h4 class="list-group-item-heading">S3 Status</h4>
|
|
<p class="list-group-item-text">View current S3 configuration and connection status</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
<div class="col-md-6">
|
|
<h3>Admin Access</h3>
|
|
<div class="alert alert-info">
|
|
<h4 class="alert-heading">Authentication Required</h4>
|
|
<p>Admin functions require authentication. Please contact the system administrator for access.</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|