Changes to league-pages.hbs to make individual elements more clear
This commit is contained in:
@@ -7,24 +7,7 @@
|
||||
|
||||
|
||||
|
||||
<div class="stats-container">
|
||||
<h2>Competitions</h2>
|
||||
<ul id="competitions-list"></ul>
|
||||
<table id="players-table" class = "table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each club.runningCompetitions}}
|
||||
<tr>
|
||||
<td>{{name}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
@@ -110,3 +93,29 @@
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Container to Display Club's Current Competitions -->
|
||||
<div class="club-current-competitions-container">
|
||||
|
||||
<h2>Competitions</h2>
|
||||
|
||||
<ul id="competitions-list"></ul>
|
||||
<table id="players-table" class="table">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{{#each club.runningCompetitions}}
|
||||
<tr>
|
||||
<td>{{name}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user