player hover initial addition
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="top" title="player-card tooltip">
|
||||||
|
{{#each club.squad}}
|
||||||
|
Contract Start: {{contractStart}}
|
||||||
|
Contract End: {{contractEnd}}
|
||||||
|
{{/each}}
|
||||||
|
</button>
|
||||||
@@ -58,7 +58,9 @@ const fetchClubsData = async (req, res, next) => {
|
|||||||
name: player.name,
|
name: player.name,
|
||||||
position: player.position,
|
position: player.position,
|
||||||
dateOfBirth: player.dateOfBirth,
|
dateOfBirth: player.dateOfBirth,
|
||||||
nationality: player.nationality
|
nationality: player.nationality,
|
||||||
|
contractStart: player.contract.start,
|
||||||
|
contractEnd: player.contract.until
|
||||||
})),
|
})),
|
||||||
staff: clubData.staff,
|
staff: clubData.staff,
|
||||||
lastUpdated: clubData.lastUpdated
|
lastUpdated: clubData.lastUpdated
|
||||||
|
|||||||
Reference in New Issue
Block a user