2024-04-15 20:22:53 -06:00
|
|
|
<div id="club-page-body" class="page-container">
|
2024-04-14 12:49:37 -06:00
|
|
|
|
2024-04-15 18:51:26 -06:00
|
|
|
<!-- Container on Top containing Club Information -->
|
2024-04-16 13:22:40 -06:00
|
|
|
<div id="club-header-container" class="information-container">
|
2024-04-16 14:36:59 -06:00
|
|
|
<img id="generated-page-header-logo" src="{{club.crest}}" alt="{{club.name}} Logo">
|
2024-04-16 15:24:46 -06:00
|
|
|
<h1 id="generated-page-header-title">{{club.name}}</h1>
|
2024-04-16 14:36:59 -06:00
|
|
|
<img id="generated-page-header-flag" src="{{club.area.club_flag}}" alt="{{club.name}} Flag">
|
2024-04-24 00:11:19 -06:00
|
|
|
|
2024-04-21 14:11:35 -06:00
|
|
|
{{#if user}}
|
2024-04-24 00:11:19 -06:00
|
|
|
{{#if isFav}}
|
|
|
|
|
<img id="club-favorite-button" src="/img/club-page/favorited.png" alt="Favorite Button">
|
|
|
|
|
{{else}}
|
|
|
|
|
<img id="club-favorite-button" src="/img/club-page/unfavorited.png" alt="Favorite Button">
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
2024-04-21 14:11:35 -06:00
|
|
|
{{else}}
|
2024-04-24 00:11:19 -06:00
|
|
|
<img id="club-favorite-button" src="/img/club-page/cant-favorite.png" title="Please Sign In to Save a Favorite Club!">
|
2024-04-21 14:11:35 -06:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
|
<!-- Hidden input fields -->
|
|
|
|
|
<input type="hidden" id="userID" value="{{user.userid}}">
|
|
|
|
|
<input type="hidden" id="teamID" value="{{club.club_id}}">
|
|
|
|
|
<input type="hidden" id="teamName" value="{{club.name}}">
|
|
|
|
|
<input type="hidden" id="teamLogo" value="{{club.crest}}">
|
2024-04-15 16:49:15 -06:00
|
|
|
</div>
|
2024-04-15 16:16:47 -06:00
|
|
|
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-page-contents-container" class="page-content-container">
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-16 13:22:40 -06:00
|
|
|
<!-- Container on Left Side containing Club Information -->
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-information-container" class="page-content-container">
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-16 13:22:40 -06:00
|
|
|
<!-- Container for Club History Information -->
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-history-container" class="content-container">
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-16 13:22:40 -06:00
|
|
|
<div id="club-information-table-header">
|
|
|
|
|
<h2>Information</h2>
|
|
|
|
|
</div>
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-information-table-container" class="card-container">
|
2024-04-16 13:22:40 -06:00
|
|
|
<table id="club-information-table">
|
|
|
|
|
<tbody>
|
|
|
|
|
<!-- Club Address Container -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<span style="font-weight: bold;">Club Address:</span><br>
|
|
|
|
|
{{club.address}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Club Foundation Container -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<span style="font-weight: bold;">Founded</span><br>
|
|
|
|
|
{{club.founded}}
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<!-- Manager Information Table -->
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<span style="font-weight: bold;">Manager</span><br>
|
|
|
|
|
<span>Name: {{club.coach.name}}</span><br>
|
|
|
|
|
<span>Nationality: {{club.coach.nationality}}</span><br>
|
|
|
|
|
<span>DOB: {{club.coach.dateOfBirth}}</span><br>
|
2024-04-24 00:13:07 -06:00
|
|
|
<span>Contract Start: {{club.coach.contract.start}}</span><br>
|
|
|
|
|
<span>Contract End: {{club.coach.contract.until}}</span><br>
|
2024-04-16 13:22:40 -06:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div> <!-- End of Club History Table Container -->
|
2024-04-15 19:06:04 -06:00
|
|
|
</div> <!-- End of Club History Container -->
|
2024-04-16 13:22:40 -06:00
|
|
|
|
2024-04-15 19:06:04 -06:00
|
|
|
<!-- Container to Display Club's Current Competitions -->
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-competitions-container" class="content-container">
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-competitions-table-header">
|
2024-04-16 13:22:40 -06:00
|
|
|
<h2>Competitions</h2>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-competitions-table-container" class="card-container">
|
2024-04-16 13:22:40 -06:00
|
|
|
<table id="club-competitions-table">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Name</th>
|
2024-04-23 21:34:15 -06:00
|
|
|
<th></th>
|
2024-04-16 13:22:40 -06:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{#each club.runningCompetitions}}
|
|
|
|
|
<tr>
|
2024-04-23 21:34:15 -06:00
|
|
|
<td><img id="competition-logo" src="{{emblem}}"></td>
|
2024-04-16 13:22:40 -06:00
|
|
|
<td>{{name}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div> <!-- End of Club Competitions Table Container -->
|
2024-04-15 19:06:04 -06:00
|
|
|
</div> <!-- End of Club Competitions Container -->
|
2024-04-15 17:05:19 -06:00
|
|
|
|
2024-04-16 13:22:40 -06:00
|
|
|
</div> <!-- End of Club Information Container (Left 20%) -->
|
2024-04-15 19:06:04 -06:00
|
|
|
|
|
|
|
|
<!-- Container on Right Side containing Club Stats -->
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-stats-and-players-container" class="page-section-container">
|
2024-04-15 19:06:04 -06:00
|
|
|
|
|
|
|
|
<!-- Club Player Container -->
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-players-container" class="content-container">
|
|
|
|
|
|
|
|
|
|
<div id="club-players-table-header" class="content-container">
|
|
|
|
|
<h2>Players</h2>
|
|
|
|
|
</div>
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-16 13:41:40 -06:00
|
|
|
<div id="club-players-table-container" class="card-container">
|
2024-04-16 14:56:22 -06:00
|
|
|
<table id="club-players-table" class="alternating-table">
|
2024-04-16 13:41:40 -06:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Name</th>
|
|
|
|
|
<th>Position</th>
|
|
|
|
|
<th>DOB</th>
|
|
|
|
|
<th>Nationality</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{#each club.squad}}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{name}}</td>
|
|
|
|
|
<td>{{position}}</td>
|
|
|
|
|
<td>{{dateOfBirth}}</td>
|
|
|
|
|
<td>{{nationality}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div> <!-- End of Club Players Table Container -->
|
|
|
|
|
</div> <!-- End of Club Players Container -->
|
2024-04-15 19:06:04 -06:00
|
|
|
|
|
|
|
|
</div> <!-- End of Club Stats Container -->
|
2024-04-15 18:51:26 -06:00
|
|
|
|
|
|
|
|
</div>
|
2024-04-15 16:49:15 -06:00
|
|
|
|
|
|
|
|
</div>
|
2024-04-15 17:05:19 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|