Fixes to file structure
This commit is contained in:
20
public/views/partials/club-page/player-card.hbs
Normal file
20
public/views/partials/club-page/player-card.hbs
Normal file
@@ -0,0 +1,20 @@
|
||||
<div class="player-card" id="player-card">
|
||||
<div class="player-card-body">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Player Name</th>
|
||||
<th>Nationality</th>
|
||||
<th>Position</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>persons.name</td>
|
||||
<td>persons.nationality</td>
|
||||
<td>persons.position</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
5
public/views/partials/club-page/player-hover.hbs
Normal file
5
public/views/partials/club-page/player-hover.hbs
Normal file
@@ -0,0 +1,5 @@
|
||||
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="top" title="player-card tooltip">
|
||||
Contract Start: {{contractStart}}
|
||||
Contract End: {{contractEnd}}
|
||||
{{/each}}
|
||||
</button>
|
||||
Reference in New Issue
Block a user